You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by so...@apache.org on 2005/08/12 22:21:46 UTC

svn commit: r232369 - /httpd/mod_smtpd/trunk/smtp_protocol.c

Author: soc-rian
Date: Fri Aug 12 13:21:44 2005
New Revision: 232369

URL: http://svn.apache.org/viewcvs?rev=232369&view=rev
Log:
Typo in vrfy function

Modified:
    httpd/mod_smtpd/trunk/smtp_protocol.c

Modified: httpd/mod_smtpd/trunk/smtp_protocol.c
URL: http://svn.apache.org/viewcvs/httpd/mod_smtpd/trunk/smtp_protocol.c?rev=232369&r1=232368&r2=232369&view=diff
==============================================================================
--- httpd/mod_smtpd/trunk/smtp_protocol.c (original)
+++ httpd/mod_smtpd/trunk/smtp_protocol.c Fri Aug 12 13:21:44 2005
@@ -596,7 +596,7 @@
     break;
   default:
     retval = 252;
-    ap_rprintf(r, "%d %s\r\n", 250, in_data->msg ? in_data->msg :
+    ap_rprintf(r, "%d %s\r\n", 252, in_data->msg ? in_data->msg :
 	       "Address seems fine, but we might not accept it.");
     break;
   }