From f1b654ac2fdcbfe60e89a1afd6ddc30b0d42ce5e Mon Sep 17 00:00:00 2001 From: Stefan Ritt Date: Mon, 10 Mar 2008 17:30:32 +0000 Subject: [PATCH] Fixed compiler warning SVN revision: 2078 --- src/elog.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/elog.c b/src/elog.c index f525255d..b8a86a29 100755 --- a/src/elog.c +++ b/src/elog.c @@ -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;