Fix whitespace issues in r330034. No functional changes.

This commit is contained in:
Gleb Smirnoff 2018-03-20 22:00:58 +00:00
parent 57b4b5f816
commit c176562d38
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=331270

View File

@ -383,13 +383,13 @@ close_filed(struct filed *f)
switch (f->f_type) {
case F_FORW:
if (f->f_un.f_forw.f_addr) {
freeaddrinfo(f->f_un.f_forw.f_addr);
f->f_un.f_forw.f_addr = NULL;
}
/*FALLTHROUGH*/
if (f->f_un.f_forw.f_addr) {
freeaddrinfo(f->f_un.f_forw.f_addr);
f->f_un.f_forw.f_addr = NULL;
}
/* FALLTHROUGH */
case F_FILE:
case F_FILE:
case F_TTY:
case F_CONSOLE:
f->f_type = F_UNUSED;
@ -1865,7 +1865,7 @@ readconfigfile(FILE *cf, int allow_includes)
f = cfline(cline, prog, host);
if (f != NULL)
addfile(f);
free(f);
free(f);
}
}
@ -1963,11 +1963,11 @@ init(int signo)
f = cfline("*.ERR\t/dev/console", "*", "*");
if (f != NULL)
addfile(f);
free(f);
free(f);
f = cfline("*.PANIC\t*", "*", "*");
if (f != NULL)
addfile(f);
free(f);
free(f);
Initialized = 1;
return;