dmitry          Wed Nov  7 08:32:17 2007 UTC

  Modified files:              
    /php-src/ext/standard       mail.c 
  Log:
  Fixed compilation
  
  
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/mail.c?r1=1.95&r2=1.96&diff_format=u
Index: php-src/ext/standard/mail.c
diff -u php-src/ext/standard/mail.c:1.95 php-src/ext/standard/mail.c:1.96
--- php-src/ext/standard/mail.c:1.95    Tue Nov  6 17:58:41 2007
+++ php-src/ext/standard/mail.c Wed Nov  7 08:32:17 2007
@@ -16,7 +16,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: mail.c,v 1.95 2007/11/06 17:58:41 jani Exp $ */
+/* $Id: mail.c,v 1.96 2007/11/07 08:32:17 dmitry Exp $ */
 
 #include <stdlib.h>
 #include <ctype.h>
@@ -92,6 +92,7 @@
        int subject_len, extra_cmd_len, i;
        char *force_extra_parameters = INI_STR("mail.force_extra_parameters");
        char *to_r, *subject_r;
+       char *p, *e;
 
        if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "sss|ss",  &to, 
&to_len, &subject, &subject_len, &message, &message_len,
                                                                                
                                                        &headers, &headers_len, 
&extra_cmd, &extra_cmd_len) == FAILURE

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to