Add missing commas. At least I didn't miss a period.

This commit is contained in:
Warner Losh 2002-03-18 16:10:00 +00:00
parent 7d1f1e9ca8
commit 58c804ff25
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=92594
2 changed files with 3 additions and 3 deletions

View File

@ -89,7 +89,7 @@ user_command(void)
fprintf(User, "OK\n");
}
} else if(!strcmp("dump\n", cmd)) {
snprintf(dumppath, sizeof(dumppath), "%s/%s" X10DIR, X10DUMPNAME);
snprintf(dumppath, sizeof(dumppath), "%s/%s", X10DIR, X10DUMPNAME);
if((dumpf = fopen(dumppath, "w")) != NULL) {
for(h = 0; h < 16; h++) {
for(i = 0; i < 16; i++) {

View File

@ -126,7 +126,7 @@ main(int argc, char *argv[])
errx(1, "can't create directory '%s'", X10DIR);
}
}
snprintf(logpath, sizeof(logpath), "%s/%s" X10DIR, X10LOGNAME);
snprintf(logpath, sizeof(logpath), "%s/%s", X10DIR, X10LOGNAME);
if((Log = fopen(logpath, "a")) == NULL)
errx(1, "can't open log file '%s'", logpath);
chown(logpath, pw->pw_uid, gr->gr_gid);
@ -363,7 +363,7 @@ dohup(void)
fprintf(Log, "%s: SIGHUP received, reopening Log\n", thedate());
fclose(Log);
snprintf(logpath, sizeof(logpath), "%s/%s" X10DIR, X10LOGNAME);
snprintf(logpath, sizeof(logpath), "%s/%s", X10DIR, X10LOGNAME);
if((Log = fopen(logpath, "a")) == NULL)
errx(1, "can't open log file '%s'", logpath);
hup_flag = 0;