c89f70f1b7
The content of this branch was automatically imported from Fedora ELN with the following as its source: https://src.fedoraproject.org/rpms/expect#e13e9cb80d4c0f7031b80814385a34effd4ee7c4
14 lines
348 B
Diff
14 lines
348 B
Diff
--- exp_clib.c.orig 2017-03-24 10:34:37.269183513 -0400
|
|
+++ exp_clib.c 2017-03-24 10:34:41.171117943 -0400
|
|
@@ -1938,8 +1938,8 @@
|
|
char *str;
|
|
{
|
|
if (exp_is_debugging) {
|
|
- fprintf(stderr,str);
|
|
- if (exp_logfile) fprintf(exp_logfile,str);
|
|
+ fprintf(stderr, "%s", str);
|
|
+ if (exp_logfile) fprintf(exp_logfile, "%s", str);
|
|
}
|
|
}
|
|
|