diff options
| author | 1998-07-12 08:23:47 +0000 | |
|---|---|---|
| committer | 1998-07-12 08:23:47 +0000 | |
| commit | 039dc297183501973f8ca66286a78fb02d3341af (patch) | |
| tree | b98a1a4fff329c5e0ff19df72aa915ccdb59ce39 /usr.sbin/cron/crontab.c | |
| parent | strncpy correctly; remove old code (diff) | |
| download | wireguard-openbsd-039dc297183501973f8ca66286a78fb02d3341af.tar.xz wireguard-openbsd-039dc297183501973f8ca66286a78fb02d3341af.zip | |
disable debugging in crontab
Diffstat (limited to 'usr.sbin/cron/crontab.c')
| -rw-r--r-- | usr.sbin/cron/crontab.c | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/usr.sbin/cron/crontab.c b/usr.sbin/cron/crontab.c index 901b43902f9..b354d362319 100644 --- a/usr.sbin/cron/crontab.c +++ b/usr.sbin/cron/crontab.c @@ -16,7 +16,7 @@ */ #if !defined(lint) && !defined(LINT) -static char rcsid[] = "$Id: crontab.c,v 1.11 1997/04/12 17:50:17 millert Exp $"; +static char rcsid[] = "$Id: crontab.c,v 1.12 1998/07/12 08:23:47 deraadt Exp $"; #endif /* crontab - install and manage per-user crontab files @@ -129,6 +129,11 @@ main(argc, argv) /*NOTREACHED*/ } +#if DEBUGGING +char *getoptarg = "u:lerx:" +#else +char *getoptarg = "u:ler"; +#endif static void parse_args(argc, argv) @@ -148,12 +153,16 @@ parse_args(argc, argv) strcpy(RealUser, User); Filename[0] = '\0'; Option = opt_unknown; - while (EOF != (argch = getopt(argc, argv, "u:lerx:"))) { + + while (EOF != (argch = getopt(argc, argv, getoptarg))) { switch (argch) { +#if DEBUGGING case 'x': if (!set_debug_flags(optarg)) usage("bad debug option"); + usage("unrecognized option"); break; +#endif case 'u': if (getuid() != ROOT_UID) { |
