diff --git a/contrib/fspscan.c b/contrib/fspscan.c index f880aea..ed292b9 100644 --- a/contrib/fspscan.c +++ b/contrib/fspscan.c @@ -72,7 +72,7 @@ static void printhelp(int argc,char **argv) exit(0); } -static void fdclose(void) +static void myfdclose(void) { close(myfd); } @@ -150,7 +150,7 @@ int main(int argc,char **argv) else fprintf(logfile,"%0d...nada\n",remoteport); fflush(logfile); - fdclose(); + myfdclose(); } return 0; }