- fix indenting (yes, I am a freak)

This commit is contained in:
2015-10-25 16:07:29 +03:30
parent e3ee2782b7
commit 006ddff6af

20
fsipd.c
View File

@ -120,16 +120,16 @@ process_request(const struct sockaddr_in *sa, int type, char *str)
char *ptype;
switch (type) {
case SOCK_STREAM:
ptype = s_types[0];
break;
case SOCK_DGRAM:
ptype = s_types[1];
break;
case SOCK_RAW:
ptype = s_types[2];
default:
ptype = s_types[3];;
case SOCK_STREAM:
ptype = s_types[0];
break;
case SOCK_DGRAM:
ptype = s_types[1];
break;
case SOCK_RAW:
ptype = s_types[2];
default:
ptype = s_types[3];;
}
chomp(str);