From 1406cf13def42c68137d9b592d9a49feda7cb40f Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Sat, 21 Jul 2012 22:34:10 +0900 Subject: [PATCH] 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. --- libs/util/quakefs.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libs/util/quakefs.c b/libs/util/quakefs.c index 0968163ed..c6ea64709 100644 --- a/libs/util/quakefs.c +++ b/libs/util/quakefs.c @@ -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);