Blame SOURCES/zip-3.0-format-security.patch

24a52b
--- a/zip.c	
24a52b
+++ a/zip.c	
24a52b
@@ -1028,7 +1028,7 @@ local void help_extended()
24a52b
 
24a52b
   for (i = 0; i < sizeof(text)/sizeof(char *); i++)
24a52b
   {
24a52b
-    printf(text[i]);
24a52b
+    printf("%s", text[i]);
24a52b
     putchar('\n');
24a52b
   }
24a52b
 #ifdef DOS
24a52b
@@ -1225,7 +1225,7 @@ local void version_info()
24a52b
             CR_MAJORVER, CR_MINORVER, CR_BETA_VER, CR_VERSION_DATE);
24a52b
   for (i = 0; i < sizeof(cryptnote)/sizeof(char *); i++)
24a52b
   {
24a52b
-    printf(cryptnote[i]);
24a52b
+    printf("%s", cryptnote[i]);
24a52b
     putchar('\n');
24a52b
   }
24a52b
   ++i;  /* crypt support means there IS at least one compilation option */