/[mailutils]/mailutils/pop3d/extra.c
ViewVC logotype

Diff of /mailutils/pop3d/extra.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.26 by gray, Fri Jan 31 15:03:01 2003 UTC revision 1.27 by gray, Mon Feb 3 15:33:56 2003 UTC
# Line 124  pop3d_abquit (int reason) Line 124  pop3d_abquit (int reason)
124    
125      default:      default:
126        pop3d_outf ("-ERR Quitting (reason unknown)\r\n");        pop3d_outf ("-ERR Quitting (reason unknown)\r\n");
127        syslog (LOG_ERR, _("Quitting (numeric reason %d)"));        syslog (LOG_ERR, _("Quitting (numeric reason %d)"), reason);
128        break;        break;
129      }      }
130    
# Line 163  pop3d_init_tls_server () Line 163  pop3d_init_tls_server ()
163    
164    if (stream_open (stream))    if (stream_open (stream))
165      {      {
166        const char *p;        char *p;
167        stream_strerror (stream, &p);        stream_strerror (stream, &p);
168        syslog (LOG_ERR, _("cannot open TLS stream: %s"), p);        syslog (LOG_ERR, _("cannot open TLS stream: %s"), p);
169        return 0;        return 0;
# Line 224  pop3d_outf (const char *fmt, ...) Line 224  pop3d_outf (const char *fmt, ...)
224    free (buf);    free (buf);
225    if (rc)    if (rc)
226      {      {
227        const char *p;        char *p;
228    
229        if (stream_strerror (ostream, &p))        if (stream_strerror (ostream, &p))
230          p = strerror (errno);          p = strerror (errno);
# Line 247  pop3d_readline (char *buffer, size_t siz Line 247  pop3d_readline (char *buffer, size_t siz
247    
248    if (rc)    if (rc)
249      {      {
250        const char *p;        char *p;
251    
252        if (stream_strerror (ostream, &p))        if (stream_strerror (ostream, &p))
253          p = strerror (errno);          p = strerror (errno);

Legend:
Removed from v.1.26  
changed lines
  Added in v.1.27

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26