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/16 12:09:30 UTC

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

Author: soc-rian
Date: Tue Aug 16 03:09:19 2005
New Revision: 232972

URL: http://svn.apache.org/viewcvs?rev=232972&view=rev
Log:
corrected typo pointed out by Joe Schaefer

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=232972&r1=232971&r2=232972&view=diff
==============================================================================
--- httpd/mod_smtpd/trunk/smtp_protocol.c (original)
+++ httpd/mod_smtpd/trunk/smtp_protocol.c Tue Aug 16 03:09:19 2005
@@ -166,9 +166,9 @@
     ap_rprintf(r, "%d-%s\r\n", 250, sr->helo);
   
     for (i = 0; i < sr->extensions->nelts - 1; ++i) {
-      ap_rprintf(r, "%d-%s\r\n", 250, ((char **)sr->extensions->nelts)[i]);
+      ap_rprintf(r, "%d-%s\r\n", 250, ((char **)sr->extensions->elts)[i]);
     }
-    ap_rprintf(r, "%d %s\r\n", 250, ((char **)sr->extensions->nelts)[i]);
+    ap_rprintf(r, "%d %s\r\n", 250, ((char **)sr->extensions->elts)[i]);
 
   } else {
     ap_rprintf(r, "%d %s\r\n", 250, sr->helo);