We don't want to translate debugging messages.

This commit is contained in:
Todd C. Miller
2011-05-17 18:37:18 -04:00
parent c3a259f5ee
commit 917c8d48ad
4 changed files with 50 additions and 54 deletions

View File

@@ -1203,7 +1203,7 @@ sudo_debug(int level, const char *fmt, ...)
return;
/* Backet fmt with program name and a newline to make it a single write */
easprintf(&fmt2, _("%s: %s\n"), getprogname(), fmt);
easprintf(&fmt2, "%s: %s\n", getprogname(), fmt);
va_start(ap, fmt);
vfprintf(stderr, fmt2, ap);
va_end(ap);