diff options
author | Warner Losh <imp@FreeBSD.org> | 2002-03-18 16:10:00 +0000 |
---|---|---|
committer | Warner Losh <imp@FreeBSD.org> | 2002-03-18 16:10:00 +0000 |
commit | 58c804ff25d4f663efd55d5b4cc58769aa691b02 (patch) | |
tree | 41ad05899b765278b60f760ef4ddb36736672d8d | |
parent | 7d1f1e9ca8ec85b0228ea179e675512c58d02380 (diff) |
Notes
-rw-r--r-- | libexec/xtend/user.c | 2 | ||||
-rw-r--r-- | 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; |