diff options
author | mpp <mpp@FreeBSD.org> | 1997-02-11 03:45:14 +0000 |
---|---|---|
committer | mpp <mpp@FreeBSD.org> | 1997-02-11 03:45:14 +0000 |
commit | 4cb95f035d5652be988da8a43d96cfec5e12ff85 (patch) | |
tree | 0fe213e0c825dc60dc88c371f82b1c9e7132c107 /usr.bin | |
parent | 6fb0e8741f33d82be86217cf1065a6741df8de33 (diff) | |
download | FreeBSD-src-4cb95f035d5652be988da8a43d96cfec5e12ff85.zip FreeBSD-src-4cb95f035d5652be988da8a43d96cfec5e12ff85.tar.gz |
Fix a couple of typos.
Submitted by: bde
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/calendar/io.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/calendar/io.c b/usr.bin/calendar/io.c index ee04e93..0021811 100644 --- a/usr.bin/calendar/io.c +++ b/usr.bin/calendar/io.c @@ -263,11 +263,11 @@ opencal() _exit(1); }; if (setgid(getegid()) < 0) { - fprintf(stderr, "calendar: setegid failed\n"); + fprintf(stderr, "calendar: setgid failed\n"); _exit(1); } if (setuid(uid) < 0) { - fprintf(stderr, "caelndar: setuid failed\n"); + fprintf(stderr, "calendar: setuid failed\n"); _exit(1); } execl(_PATH_CPP, "cpp", "-P", "-I.", _PATH_INCLUDE, NULL); @@ -326,11 +326,11 @@ closecal(fp) _exit(1); }; if (setgid(getegid()) < 0) { - fprintf(stderr, "calendar: setegid failed\n"); + fprintf(stderr, "calendar: setgid failed\n"); _exit(1); } if (setuid(uid) < 0) { - fprintf(stderr, "caelndar: setuid failed\n"); + fprintf(stderr, "calendar: setuid failed\n"); _exit(1); } execl(_PATH_SENDMAIL, "sendmail", "-i", "-t", "-F", |