1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-02 22:46:30 +02:00

windoze version works again

This commit is contained in:
Werner Koch 1998-10-06 12:10:02 +00:00
parent 6f73ec963a
commit f04db56311
27 changed files with 803 additions and 409 deletions

View file

@ -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