- (stevesk) log.c openbsd sync; missing newlines

This commit is contained in:
Kevin Steves 2001-04-02 13:45:00 +00:00
parent cf7786b608
commit edcd5762e2
2 changed files with 6 additions and 3 deletions

View File

@ -1,3 +1,6 @@
20010402
- (stevesk) log.c openbsd sync; missing newlines
20010330
- (djm) Another openbsd-compat/glob.c sync
- (djm) OpenBSD CVS Sync
@ -4792,4 +4795,4 @@
- Wrote replacements for strlcpy and mkdtemp
- Released 1.0pre1
$Id: ChangeLog,v 1.1042 2001/03/30 00:50:32 djm Exp $
$Id: ChangeLog,v 1.1043 2001/04/02 13:45:00 stevesk Exp $

4
log.c
View File

@ -268,7 +268,7 @@ log_init(char *av0, LogLevel level, SyslogFacility facility, int on_stderr)
log_level = level;
break;
default:
fprintf(stderr, "Unrecognized internal syslog level code %d",
fprintf(stderr, "Unrecognized internal syslog level code %d\n",
(int) level);
exit(1);
}
@ -318,7 +318,7 @@ log_init(char *av0, LogLevel level, SyslogFacility facility, int on_stderr)
break;
default:
fprintf(stderr,
"Unrecognized internal syslog facility code %d",
"Unrecognized internal syslog facility code %d\n",
(int) facility);
exit(1);
}