X-Git-Url: https://wannabe.guru.org/gitweb/?p=typhoon.git;a=blobdiff_plain;f=src%2Futil.c;fp=src%2Futil.c;h=34b3739d51ec22b6395e05f21a607de21b4f74e6;hp=599c16dde572600c1efdc15d3d40c24294b1d21f;hb=98e8d2445213432c65ae48cfa76c863aae1139e7;hpb=23c44f05a0956ecba918a336b30c6eccf0a996d5 diff --git a/src/util.c b/src/util.c index 599c16d..34b3739 100755 --- a/src/util.c +++ b/src/util.c @@ -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); }