diff options
author | John Denker <jsd@av8n.com> | 2016-01-01 18:30:16 -0800 |
---|---|---|
committer | John Denker <jsd@av8n.com> | 2016-01-01 18:31:31 -0800 |
commit | 3bc3448a61d3de0547552f2e138c3e9db562ae11 (patch) | |
tree | 89941e4ed4de9d3bb2cb67972aecf1be68475497 | |
parent | 0fefe3a661fb5155f811d5a6412194a566f7de0a (diff) |
bugfix: unexpected AUTH would cause program to die ungracefully
-rw-r--r-- | qmail-smtpd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qmail-smtpd.c b/qmail-smtpd.c index 4a35fa1..103d4b5 100644 --- a/qmail-smtpd.c +++ b/qmail-smtpd.c @@ -681,7 +681,7 @@ char *arg; int i; char *cmd = arg; - if (!hostname || !*childargs) + if (!hostname || !childargs) { out("503 auth not available (#5.3.3)\r\n"); return; |