Skip to content
Snippets Groups Projects
Commit 99552394 authored by rswindell's avatar rswindell
Browse files

Removed old debug messages ("0000 SEND") from sendmail_thread.

parent ab6cc7c7
No related branches found
No related tags found
No related merge requests found
......@@ -2388,19 +2388,15 @@ static void sendmail_thread(void* arg)
port=IPPORT_SMTP;
lprintf("0000 SEND opening socket");
if((sock=mail_open_socket(SOCK_STREAM))==INVALID_SOCKET) {
lprintf("0000 !SEND ERROR %d opening socket", ERROR_VALUE);
continue;
}
lprintf("%04d SEND socket opened",sock);
memset(&addr,0,sizeof(addr));
addr.sin_addr.s_addr = htonl(startup->interface_addr);
addr.sin_family = AF_INET;
lprintf("%04d SEND binding socket",sock);
if((i=bind(sock, (struct sockaddr *) &addr, sizeof (addr)))!=0) {
lprintf("%04d !SEND ERROR %d (%d) binding socket", sock, i, ERROR_VALUE);
continue;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment