diff options
author | Stef Walter <stef@memberwebs.com> | 2004-09-18 02:59:18 +0000 |
---|---|---|
committer | Stef Walter <stef@memberwebs.com> | 2004-09-18 02:59:18 +0000 |
commit | 4d3d0613adacd25641d44b85f9690c37dbed65c5 (patch) | |
tree | bece847cf527ee1e48b75b6270f8007586c1eed6 | |
parent | de2cb6f809f261f5de3ee173baf1422b925cbdaf (diff) |
Some small syntax changes.
-rw-r--r-- | common/smtppass.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/smtppass.c b/common/smtppass.c index fa82b84..57bdf27 100644 --- a/common/smtppass.c +++ b/common/smtppass.c @@ -176,7 +176,7 @@ static int connect_out(spctx_t* ctx); static int read_server_response(spctx_t* ctx); static int parse_config_file(const char* configfile); static char* parse_address(char* line); -static int is_successful_rsp(char* line); +static int is_successful_rsp(const char* line); /* Used externally in some cases */ int sp_parse_option(const char* name, const char* option); @@ -1060,7 +1060,7 @@ static char* parse_address(char* line) return trim_end(line); } -static int is_successful_rsp(char* line) +static int is_successful_rsp(const char* line) { /* * We check for both '250 xxx' type replies |