masqmail
changeset 176:a39c8ee61185
fixed a small typo in the debug output
author | meillo@marmaro.de |
---|---|
date | Wed, 14 Jul 2010 16:26:12 +0200 |
parents | 25b769efafe6 |
children | 6530806d418f |
files | src/smtp_out.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line diff
1.1 --- a/src/smtp_out.c Wed Jul 14 12:15:45 2010 +0200 1.2 +++ b/src/smtp_out.c Wed Jul 14 16:26:12 2010 +0200 1.3 @@ -185,7 +185,7 @@ 1.4 1.5 if (((c == '2') && !after_data) || ((c == '3') && after_data)) { 1.6 psb->error = smtp_ok; 1.7 - DEBUG(6) debugf("response OK:'%s' after_date = %d\n", psb->buffer, (int) after_data); 1.8 + DEBUG(6) debugf("response OK:'%s' after_data = %d\n", psb->buffer, (int) after_data); 1.9 return TRUE; 1.10 } else { 1.11 if (c == '4') 1.12 @@ -194,7 +194,7 @@ 1.13 psb->error = smtp_fail; 1.14 else 1.15 psb->error = smtp_syntax; 1.16 - DEBUG(6) debugf("response failure:'%s' after_date = %d\n", psb->buffer, (int) after_data); 1.17 + DEBUG(6) debugf("response failure:'%s' after_data = %d\n", psb->buffer, (int) after_data); 1.18 return FALSE; 1.19 } 1.20 }