diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2017-01-19 12:26:35 +0000 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2017-01-19 12:26:35 +0000 |
commit | c39b93a62e182a09450f212b03705dcafa7431aa (patch) | |
tree | e1b61e870bec79c265877862b6366669959c1722 /src | |
parent | 62ee80535b325100f05758fe1b6d22cb3cae9f73 (diff) |
VRFY: add docs note on results, and additional test cases
Diffstat (limited to 'src')
-rw-r--r-- | src/src/smtp_in.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/src/smtp_in.c b/src/src/smtp_in.c index 655e25394..890c7c517 100644 --- a/src/src/smtp_in.c +++ b/src/src/smtp_in.c @@ -4617,7 +4617,7 @@ while (done <= 0) friends now makes it absolutely clear that it means *mailbox*. Consequently we must always qualify this address, regardless. */ - if (recipient_domain == 0) + if (!recipient_domain) if (!(recipient_domain = qualify_recipient(&recipient, smtp_cmd_data, US"recipient"))) { @@ -4875,7 +4875,7 @@ while (done <= 0) break; } - if (recipient_domain == 0) + if (!recipient_domain) if (!(recipient_domain = qualify_recipient(&address, smtp_cmd_data, US"verify"))) break; |