remove stray semicolons (by Cristian Ionescu-Idbohrn)
This commit is contained in:
parent
b81f97bbd2
commit
43d5d429fd
@ -223,7 +223,7 @@ static char *UNSPEC_print(unsigned char *ptr)
|
|||||||
char *pos;
|
char *pos;
|
||||||
unsigned int i;
|
unsigned int i;
|
||||||
|
|
||||||
if (!buff);
|
if (!buff)
|
||||||
buff = xmalloc(sizeof(struct sockaddr) * 3 + 1);
|
buff = xmalloc(sizeof(struct sockaddr) * 3 + 1);
|
||||||
pos = buff;
|
pos = buff;
|
||||||
for (i = 0; i < sizeof(struct sockaddr); i++) {
|
for (i = 0; i < sizeof(struct sockaddr); i++) {
|
||||||
|
@ -113,7 +113,7 @@ int fakeidentd_main(int argc ATTRIBUTE_UNUSED, char **argv)
|
|||||||
strncpy(bogouser, argv[optind], sizeof(bogouser));
|
strncpy(bogouser, argv[optind], sizeof(bogouser));
|
||||||
|
|
||||||
/* Daemonize if no -f and no -i and no -w */
|
/* Daemonize if no -f and no -i and no -w */
|
||||||
if (!(opt & OPT_fiw));
|
if (!(opt & OPT_fiw))
|
||||||
bb_daemonize_or_rexec(0, argv);
|
bb_daemonize_or_rexec(0, argv);
|
||||||
|
|
||||||
/* Where to log in inetd modes? "Classic" inetd
|
/* Where to log in inetd modes? "Classic" inetd
|
||||||
|
Loading…
Reference in New Issue
Block a user