--- src/main.c.orig 2006-08-13 14:22:58.000000000 -0400 +++ src/main.c 2013-12-03 08:56:48.341655122 -0500 @@ -261,21 +261,21 @@ strcpy(cmd, strlen(name) < 32 ? name : XDIALOG); strcpysafe(msg, HELP_TEXT1, HELP_MSG_SIZE); strcatsafe(msg, cmd, HELP_MSG_SIZE); strcatsafe(msg, HELP_TEXT2, HELP_MSG_SIZE); #ifdef USE_SCANF strcatsafe(msg, HELP_TEXT3, HELP_MSG_SIZE); #endif fprintf(stderr, "%s: %s !\n", cmd, errmsg); - fprintf(stderr, msg); + fprintf(stderr, "%s", msg); if (strlen(msg) == HELP_MSG_SIZE-1) fprintf(stderr, "\n\nHelp message truncated, please re-compile "\ "after increasing HELP_MSG_SIZE in main.c !\n"); strcpysafe(Xdialog.title, "Usage for ", MAX_TITLE_LENGTH); strcatsafe(Xdialog.title, cmd, MAX_TITLE_LENGTH); Xdialog.cancel_button = Xdialog.help = Xdialog.icon = Xdialog.check = FALSE; if (!Xdialog.print) { Xdialog.print = TRUE;