]> granicus.if.org Git - sudo/commitdiff
Expand the FMT_FIRST anf FMT_CONTD macros inline so they get picked
authorTodd C. Miller <Todd.Miller@courtesan.com>
Fri, 9 Nov 2012 20:30:06 +0000 (15:30 -0500)
committerTodd C. Miller <Todd.Miller@courtesan.com>
Fri, 9 Nov 2012 20:30:06 +0000 (15:30 -0500)
up by xgettext.

plugins/sudoers/logging.c

index 2dbd0f7be57b8ddfa203ed1e8a493def406b88a6..2b61f3869e7b254bd18bb9f0bf5fde058a1f9473 100644 (file)
@@ -123,9 +123,6 @@ mysyslog(int pri, const char *fmt, ...)
     debug_return;
 }
 
-#define FMT_FIRST "%8s : %s"
-#define FMT_CONTD "%8s : (command continued) %s"
-
 /*
  * Log a message to syslog, pre-pending the username and splitting the
  * message into parts if it is longer than MAXSYSLOGLEN.
@@ -144,7 +141,7 @@ do_syslog(int pri, char *msg)
     /*
      * Log the full line, breaking into multiple syslog(3) calls if necessary
      */
-    fmt = _(FMT_FIRST);
+    fmt = _("%8s : %s");
     maxlen = MAXSYSLOGLEN - (strlen(fmt) - 5 + strlen(user_name));
     for (p = msg; *p != '\0'; ) {
        len = strlen(p);
@@ -172,7 +169,7 @@ do_syslog(int pri, char *msg)
            mysyslog(pri, fmt, user_name, p);
            p += len;
        }
-       fmt = _(FMT_CONTD);
+       fmt = _("%8s : (command continued) %s");
        maxlen = MAXSYSLOGLEN - (strlen(fmt) - 5 + strlen(user_name));
     }