diff options
author | ache <ache@FreeBSD.org> | 1995-10-08 14:15:20 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1995-10-08 14:15:20 +0000 |
commit | e257f78650356c0486c13104aba1e03201b70d4a (patch) | |
tree | 6821c1b29860ffa9a061eab81e44a120ab8c18a6 /usr.bin/calendar/calendar.c | |
parent | eeedb17b1ae92fe0edad01844794aa83c6a1cebe (diff) | |
download | FreeBSD-src-e257f78650356c0486c13104aba1e03201b70d4a.zip FreeBSD-src-e257f78650356c0486c13104aba1e03201b70d4a.tar.gz |
Remove hack inserted by me long time ago (cd $HOME for user-called case),
no other system do it and it can cause problem with multi-calendars
for single user.
Diffstat (limited to 'usr.bin/calendar/calendar.c')
-rw-r--r-- | usr.bin/calendar/calendar.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/usr.bin/calendar/calendar.c b/usr.bin/calendar/calendar.c index deb4cfc..6f84a2a 100644 --- a/usr.bin/calendar/calendar.c +++ b/usr.bin/calendar/calendar.c @@ -80,7 +80,6 @@ main(argc, argv) { extern int optind; int ch; - char *s; while ((ch = getopt(argc, argv, "-a")) != EOF) switch (ch) { @@ -111,11 +110,8 @@ main(argc, argv) cal(); (void)seteuid(0); } - else { - if ((s = getenv("HOME")) != NULL) - chdir(s); + else cal(); - } exit(0); } |