diff options
Diffstat (limited to 'src/util.c')
| -rwxr-xr-x | src/util.c | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -426,7 +426,7 @@ Return value: // // Skip chunks // - while(!isspace(*p) && &p) p++; + while(!isspace(*p) && *p) p++; if (!*p) return(NULL); } while(1); @@ -702,13 +702,13 @@ Return value: // Send to logfile // if (NULL != g_pfLogfile) { - fprintf(g_pfLogfile, buf); + fprintf(g_pfLogfile, "%s", buf); } // // Send to stdout // - fprintf(stdout, buf); + fprintf(stdout, "%s", buf); fflush(stdout); } @@ -747,7 +747,7 @@ Return value: // Send to logfile // if (NULL != g_pfLogfile) { - fprintf(g_pfLogfile, buf); + fprintf(g_pfLogfile, "%s", buf); fflush(g_pfLogfile); } } @@ -788,14 +788,14 @@ Return value: // Send it to logfile // if (NULL != g_pfLogfile) { - fprintf(g_pfLogfile, buf); + fprintf(g_pfLogfile, "%s", buf); fflush(g_pfLogfile); } // // Send it to stderr // - fprintf(stderr, buf); + fprintf(stderr, "%s", buf); fflush(stderr); } |
