diff options
author | Stef Walter <stef@thewalter.net> | 2010-11-02 17:06:37 +0000 |
---|---|---|
committer | Stef Walter <stef@thewalter.net> | 2011-01-23 15:47:45 -0600 |
commit | d7ffc57442e111f3bf4236fb03896c21cb1022a4 (patch) | |
tree | bed8d4adb64488709ad3388583ad26a3361829f9 /common | |
parent | 57751190780ee8974075a5d16e7bacd6991eebba (diff) |
Fix compiler warnings.
Diffstat (limited to 'common')
-rw-r--r-- | common/smtppass.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/common/smtppass.c b/common/smtppass.c index 411be49..b860042 100644 --- a/common/smtppass.c +++ b/common/smtppass.c @@ -219,7 +219,6 @@ static int parse_config_file(const char* configfile); static char* parse_address(char* line); static char* parse_xforward(char* line, const char* part); static const char* get_successful_rsp(const char* line, int* cont); -static const char* get_continue_rsp(const char* line); static void do_server_noop(spctx_t* ctx); /* Used externally in some cases */ @@ -1334,20 +1333,6 @@ static char* parse_xforward(char* line, const char* part) return t; } -static const char* get_continue_rsp(const char* line) -{ - /* - * We check for '3XX xxx' type replies - */ - - line = trim_start(line); - - if(line[0] == '3' && isdigit(line[1]) && isdigit(line[2]) && line[3] == ' ') - return line + 4; - - return NULL; -} - static const char* get_successful_rsp(const char* line, int* cont) { /* @@ -1852,8 +1837,6 @@ int sp_pass_data(spctx_t* ctx) return -1; } - sp_messagex(ctx, LOG_DEBUG, "skipped email data"); - /* Okay read the response from the server and echo it to the client */ if(read_server_response(ctx) == -1) return -1; |