diff options
author | Werner Koch <[email protected]> | 1998-10-06 12:10:02 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 1998-10-06 12:10:02 +0000 |
commit | f04db5631158b3856ea11f300d02a03c7e15ede4 (patch) | |
tree | 6cd9c2416b65118f4da0aeceb6be2a7f1763e258 /util/logger.c | |
parent | *** empty log message *** (diff) | |
download | gnupg-f04db5631158b3856ea11f300d02a03c7e15ede4.tar.gz gnupg-f04db5631158b3856ea11f300d02a03c7e15ede4.zip |
windoze version works again
Diffstat (limited to 'util/logger.c')
-rw-r--r-- | util/logger.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/util/logger.c b/util/logger.c index aabeaec7d..60f59da8a 100644 --- a/util/logger.c +++ b/util/logger.c @@ -24,6 +24,7 @@ #include <stdarg.h> #include "util.h" +#include "i18n.h" static char pidstring[15]; static char *pgm_name; @@ -173,13 +174,13 @@ g10_log_bug( const char *fmt, ... ) void g10_log_bug0( const char *file, int line, const char *func ) { - log_bug("you found a bug ... (%s:%d:%s)\n", file, line, func ); + log_bug(_("Ohhhh jeeee ... this is a bug (%s:%d:%s)\n"), file, line, func ); } #else void g10_log_bug0( const char *file, int line ) { - log_bug("you found a bug ... (%s:%d)\n", file, line); + log_bug(_("you found a bug ... (%s:%d)\n"), file, line); } #endif |