Blame SOURCES/expect-5.45-format-security.patch

e9b926
--- exp_clib.c.orig	2017-03-24 10:34:37.269183513 -0400
e9b926
+++ exp_clib.c	2017-03-24 10:34:41.171117943 -0400
e9b926
@@ -1938,8 +1938,8 @@
e9b926
      char *str;
e9b926
 {
e9b926
   if (exp_is_debugging) {
e9b926
-    fprintf(stderr,str);
e9b926
-    if (exp_logfile) fprintf(exp_logfile,str);
e9b926
+    fprintf(stderr, "%s", str);
e9b926
+    if (exp_logfile) fprintf(exp_logfile, "%s", str);
e9b926
   }
e9b926
 }
e9b926