From: Frédéric Marchal Date: Sun, 16 Dec 2012 17:04:07 +0000 (+0100) Subject: Fix a message string X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6884aba681bc9f82f73920e86697b02f1a8653e7;p=thirdparty%2Fsarg.git Fix a message string --- diff --git a/util.c b/util.c index 104ac98..7c08fcc 100644 --- a/util.c +++ b/util.c @@ -2048,7 +2048,7 @@ void emptytmpdir(const char *dir) if (S_ISDIR(st.st_mode)) { unlinkdir(dname,0); } else if (!S_ISREG(st.st_mode)) { - debuga(_("Unknown path type \"%s\". Check your temporary directory\n"),dname); + debuga(_("Unknown path type for \"%s\". Check temporary directory\n"),dname); exit(EXIT_FAILURE); } }