diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2004-05-11 19:44:09 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2004-05-11 19:44:09 +0000 |
commit | 56edba04bea577c9254273331bab7913dc628bb9 (patch) | |
tree | 3c19bac38969f15d1ff0eb9e3adb863a03ae1232 | |
parent | db8eb575e95988f69a160c02f78fba6d49fc4b55 (diff) |
If no help file is present don't print the sendmail version--we
may be trying to keep the version hidden. From Alexey E. Suslikov.
-rw-r--r-- | gnu/usr.sbin/sendmail/sendmail/srvrsmtp.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gnu/usr.sbin/sendmail/sendmail/srvrsmtp.c b/gnu/usr.sbin/sendmail/sendmail/srvrsmtp.c index 4486e59bbfd..417d243f242 100644 --- a/gnu/usr.sbin/sendmail/sendmail/srvrsmtp.c +++ b/gnu/usr.sbin/sendmail/sendmail/srvrsmtp.c @@ -4288,8 +4288,7 @@ help(topic, e) { /* no help */ errno = 0; - message("502 5.3.0 Sendmail %s -- HELP not implemented", - Version); + message("502 5.3.0 HELP not implemented"); return; } |