Whitespace fixes

This commit is contained in:
Radim Kolar 2020-06-05 07:39:16 +02:00
parent 7d3e62336d
commit bfd5fc3f7b

View File

@ -99,7 +99,7 @@ static const char * print_command(unsigned char cmd)
case CC_BYE:
return "BYE";
case CC_VERSION:
return "VER";
return "VER";
case CC_INFO:
return "INFO";
case CC_ERR:
@ -125,7 +125,7 @@ static const char * print_command(unsigned char cmd)
case CC_GRAB_FILE:
return "GRAB";
case CC_GRAB_DONE:
return "GRABDONE";
return "GRABDONE";
case CC_STAT:
return "STAT";
case CC_RENAME:
@ -185,19 +185,19 @@ int server_loop (int fd, time_t timeout)
FILE *fp;
if(dbug) fprintf(stderr,"Got USR1, dumping tables...\n");
if(dumpname)
fp=fopen(dumpname,"a");
fp=fopen(dumpname,"a");
else
fp=NULL;
fp=NULL;
dump_htab(fp);
dump_iptab(iptab,fp);
stat_caches(fp);
if(fp)
{
fclose(fp);
fclose(fp);
}
dump = 0;
} else
if(shutdowning) return 1;
if(shutdowning) return 1;
retval = _x_select(&mask, timeout);