diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1998-07-12 19:45:31 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1998-07-12 19:45:31 +0000 |
commit | 857bc3bf0927ceb9764dccd2b26e78a5c1ed9549 (patch) | |
tree | 998c29a21ce92fed5686978e921118afd4a0968c /usr.sbin/sendmail/contrib/bitdomain.c | |
parent | 2d68808cfff780677255e0f5b7ef0be71a0d9800 (diff) |
something hosed the sendmail import; fix up by hand
Diffstat (limited to 'usr.sbin/sendmail/contrib/bitdomain.c')
-rw-r--r-- | usr.sbin/sendmail/contrib/bitdomain.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/sendmail/contrib/bitdomain.c b/usr.sbin/sendmail/contrib/bitdomain.c index ec79b9506e4..52d6d2187c3 100644 --- a/usr.sbin/sendmail/contrib/bitdomain.c +++ b/usr.sbin/sendmail/contrib/bitdomain.c @@ -51,7 +51,7 @@ char **argv; { int opt; - while ((opt = getopt(argc, argv, "o:")) != -1) { + while ((opt = getopt(argc, argv, "o:")) != EOF) { switch (opt) { case 'o': if (!freopen(optarg, "w", stdout)) { |