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 2006/01/24 07:32:37 UTC

svn commit: r371844 - in /httpd/mod_smtpd/trunk/src: mod_smtpd.h smtp_core.c

Author: soc-rian
Date: Mon Jan 23 22:32:35 2006
New Revision: 371844

URL: http://svn.apache.org/viewcvs?rev=371844&view=rev
Log:
remove unused member.


Modified:
    httpd/mod_smtpd/trunk/src/mod_smtpd.h
    httpd/mod_smtpd/trunk/src/smtp_core.c

Modified: httpd/mod_smtpd/trunk/src/mod_smtpd.h
URL: http://svn.apache.org/viewcvs/httpd/mod_smtpd/trunk/src/mod_smtpd.h?rev=371844&r1=371843&r2=371844&view=diff
==============================================================================
--- httpd/mod_smtpd/trunk/src/mod_smtpd.h (original)
+++ httpd/mod_smtpd/trunk/src/mod_smtpd.h Mon Jan 23 22:32:35 2006
@@ -99,9 +99,6 @@
     /* spooled data file pointer */
     apr_file_t *tfp;
 
-    /* start of body */
-    apr_off_t body_offset;
-
     /* headers */
     apr_table_t *headers;
 

Modified: httpd/mod_smtpd/trunk/src/smtp_core.c
URL: http://svn.apache.org/viewcvs/httpd/mod_smtpd/trunk/src/smtp_core.c?rev=371844&r1=371843&r2=371844&view=diff
==============================================================================
--- httpd/mod_smtpd/trunk/src/smtp_core.c (original)
+++ httpd/mod_smtpd/trunk/src/smtp_core.c Mon Jan 23 22:32:35 2006
@@ -53,7 +53,6 @@
     apr_pool_clear(str->p);
     str->trans_state = SMTPD_STATE_GOT_NOTHING;
     str->tfp = NULL;
-    str->body_offset = 0;
     str->rcpt_to = apr_array_make(str->p, 5, sizeof(char *));
     str->mail_from = NULL;
     str->headers = apr_table_make(str->p, 5);