forked from pool/expect
14 lines
276 B
Diff
14 lines
276 B
Diff
|
--- exp_clib.c.orig
|
||
|
+++ exp_clib.c
|
||
|
@@ -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);
|
||
|
}
|
||
|
}
|
||
|
|