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

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