ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/trunk/src/ircd.c
(Generate patch)

Comparing ircd-hybrid/trunk/src/ircd.c (file contents):
Revision 4748 by michael, Thu Oct 16 12:10:27 2014 UTC vs.
Revision 4751 by michael, Thu Oct 16 12:18:56 2014 UTC

# Line 428 | Line 428 | ssl_init(void)
428      fprintf(stderr, "ERROR: Could not initialize the SSL Server context -- %s\n", s);
429      ilog(LOG_TYPE_IRCD, "ERROR: Could not initialize the SSL Server context -- %s\n", s);
430      exit(EXIT_FAILURE);
431 +    return;  /* Not reached */
432    }
433  
434    SSL_CTX_set_options(ConfigServerInfo.server_ctx, SSL_OP_NO_SSLv2|SSL_OP_NO_SSLv3|SSL_OP_NO_TICKET);
# Line 457 | Line 458 | ssl_init(void)
458      fprintf(stderr, "ERROR: Could not initialize the SSL Client context -- %s\n", s);
459      ilog(LOG_TYPE_IRCD, "ERROR: Could not initialize the SSL Client context -- %s\n", s);
460      exit(EXIT_FAILURE);
461 +    return;  /* Not reached */
462    }
463  
464    SSL_CTX_set_options(ConfigServerInfo.client_ctx, SSL_OP_NO_SSLv2|SSL_OP_NO_SSLv3|SSL_OP_NO_TICKET);

Diff Legend

Removed lines
+ Added lines
< Changed lines (old)
> Changed lines (new)