Fixed compiler warning

SVN revision: 2078
This commit is contained in:
Stefan Ritt 2008-03-10 17:30:32 +00:00
parent e36c2bf892
commit f1b654ac2f

View File

@ -471,7 +471,7 @@ INT retrieve_elog(int sock, char *subdir, char *experiment,
/*------------------------------------------------------------------*/ /*------------------------------------------------------------------*/
int elog_connect(char *host, int port, int ssl) int elog_connect(char *host, int port)
{ {
int status, sock; int status, sock;
struct hostent *phe; struct hostent *phe;
@ -573,7 +573,7 @@ INT submit_elog(char *host, int port, int ssl, char *subdir, char *experiment,
SSL *ssl_con; SSL *ssl_con;
#endif #endif
sock = elog_connect(host, port, ssl); sock = elog_connect(host, port);
if (sock < 0) if (sock < 0)
return sock; return sock;