From 58c804ff25d4f663efd55d5b4cc58769aa691b02 Mon Sep 17 00:00:00 2001 From: Warner Losh Date: Mon, 18 Mar 2002 16:10:00 +0000 Subject: Add missing commas. At least I didn't miss a period. --- libexec/xtend/user.c | 2 +- libexec/xtend/xtend.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/libexec/xtend/user.c b/libexec/xtend/user.c index e10445ef1c3a8..b2a239a4cd076 100644 --- a/libexec/xtend/user.c +++ b/libexec/xtend/user.c @@ -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++) { diff --git a/libexec/xtend/xtend.c b/libexec/xtend/xtend.c index 9e5ed4f4f98bb..62f76d1af7468 100644 --- a/libexec/xtend/xtend.c +++ b/libexec/xtend/xtend.c @@ -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; -- cgit v1.2.3