diff options
author | epochqwert <epoch@53flpnlls43fcguy.onion> | 2015-02-04 03:28:30 -0600 |
---|---|---|
committer | epochqwert <epoch@53flpnlls43fcguy.onion> | 2015-02-04 03:28:30 -0600 |
commit | e80dd3006171b33705395b0c7547f03925670bf9 (patch) | |
tree | 0588ce56dc4ab3cc824bb600698025e0c031bc63 /segfault.c | |
parent | 1b0d057b5068a5526aef1a5b1a2338d9f3bc6ef3 (diff) | |
download | segfault-e80dd3006171b33705395b0c7547f03925670bf9.tar.gz segfault-e80dd3006171b33705395b0c7547f03925670bf9.zip |
a round of warnings on Linux fixed.
Diffstat (limited to 'segfault.c')
-rw-r--r-- | segfault.c | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -1,4 +1,5 @@ #include <stdio.h> +#include <string.h> #include <stdarg.h> #include <signal.h> #include <errno.h> @@ -280,7 +281,6 @@ void eofp(FILE *fp) { //feature creature void extra_handler(int fd) { int tmpo,i; - static int mmerp=0; char tmp[BS+1]; char *tmp2; if(oldtime == time(0) && lines_sent > LINES_SENT_LIMIT) {//if it is still the same second, skip this function. @@ -321,14 +321,12 @@ void extra_handler(int fd) { } else {//if there was something to read. tailf[i].lines++; - mmerp=0; if(strchr(tmp,'\r')) *strchr(tmp,'\r')=0; if(strchr(tmp,'\n')) *strchr(tmp,'\n')=0; if(tailf[i].opt & TAILO_EVAL) {//eval if(tailf[i].opt & TAILO_FORMAT) { tmp2=format_magic(fd,tailf[i].to,tailf[i].user,tmp,tailf[i].args); } else { - if(!tmp) exit(72); tmp2=strdup(tmp); } message_handler(fd,tailf[i].to,tailf[i].user,tmp2,0); |