diff options
author | gshapiro <gshapiro@FreeBSD.org> | 2015-07-09 05:23:17 +0000 |
---|---|---|
committer | gshapiro <gshapiro@FreeBSD.org> | 2015-07-09 05:23:17 +0000 |
commit | 574e70a7ab89c27012f2e53ff74c081ef90091e1 (patch) | |
tree | d72b291cbd1817d0c82d74e0443d43d3086fb304 /contrib/sendmail/editmap/editmap.c | |
parent | 6fbe38a3cd2c5a390bea25327ee11f7e89fac99d (diff) | |
download | FreeBSD-src-574e70a7ab89c27012f2e53ff74c081ef90091e1.zip FreeBSD-src-574e70a7ab89c27012f2e53ff74c081ef90091e1.tar.gz |
MFC: Merge sendmail 8.15.2
Approved by: re (gjb)
Diffstat (limited to 'contrib/sendmail/editmap/editmap.c')
-rw-r--r-- | contrib/sendmail/editmap/editmap.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/contrib/sendmail/editmap/editmap.c b/contrib/sendmail/editmap/editmap.c index 3c1b8b9..66ee5793 100644 --- a/contrib/sendmail/editmap/editmap.c +++ b/contrib/sendmail/editmap/editmap.c @@ -76,7 +76,6 @@ main(argc, argv) { char *progname; char *cfile; - bool verbose = false; bool query = false; bool update = false; bool remove = false; @@ -131,7 +130,7 @@ main(argc, argv) (void) sm_strlcpy(user_info.smdbu_name, RunAsUserName, SMDB_MAX_USER_NAME_LEN); -#define OPTIONS "C:fquxvN" +#define OPTIONS "C:fquxN" while ((opt = getopt(argc, argv, OPTIONS)) != -1) { switch (opt) @@ -159,10 +158,6 @@ main(argc, argv) nops++; break; - case 'v': - verbose = true; - break; - case 'N': inclnull = true; break; |