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 | 2dd8af96f9714d4729c8a2a3f4c599ee0d4175e0 (patch) | |
| tree | ef82710dc593411b0d8b40ca5f02913abac15f08 /common | |
| parent | 98cdb12dfeed4f370fee79eb41a3e8a94ef7f2a9 (diff) | |
Some small syntax changes.
Diffstat (limited to 'common')
| -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  | 
