diff options
Diffstat (limited to 'logging.c')
| -rw-r--r-- | logging.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| @@ -203,7 +203,7 @@ int logline(char *str, char *ournick, char *basedir, int type) {    debugprint("logline(): Complete log string to write: '%s', length '%ld'.\n", line, strlen(line));    // Write complete line to file -  if ((bytes = fprintf(fp, line)) < 0) { +  if ((bytes = fprintf(fp, "%s", line)) < 0) {      printf("error: could not write to log file.\n");      exit(1);    } | 
