Mask the QFS_Rename message with SYS_FS.

It really should have been masked all along, but I guess developer 1 was
too noisy back then.
This commit is contained in:
Bill Currie 2012-07-21 22:34:10 +09:00
parent 068bc7a627
commit 1406cf13de

View file

@ -1452,7 +1452,8 @@ QFS_Rename (const char *old_path, const char *new_path)
if ((ret = qfs_expand_userpath (full_old, old_path)) != -1)
if ((ret = qfs_expand_userpath (full_new, new_path)) != -1)
if ((ret = Sys_CreatePath (full_new->str)) != -1) {
Sys_Printf ("QFS_Rename %s %s\n", full_old->str, full_new->str);
Sys_MaskPrintf (SYS_FS, "QFS_Rename %s %s\n", full_old->str,
full_new->str);
ret = Qrename (full_old->str, full_new->str);
}
dstring_delete (full_old);