Fixed compiler warning

SVN revision: 2078
This commit is contained in:
2008-03-10 17:30:32 +00:00
parent e36c2bf892
commit f1b654ac2f
+2 -2
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;
struct hostent *phe;
@@ -573,7 +573,7 @@ INT submit_elog(char *host, int port, int ssl, char *subdir, char *experiment,
SSL *ssl_con;
#endif
sock = elog_connect(host, port, ssl);
sock = elog_connect(host, port);
if (sock < 0)
return sock;