Stop unused variable warning on WIN32 et al.
authorDr. Stephen Henson <steve@openssl.org>
Tue, 18 Aug 2009 11:14:12 +0000 (11:14 +0000)
committerDr. Stephen Henson <steve@openssl.org>
Tue, 18 Aug 2009 11:14:12 +0000 (11:14 +0000)
apps/s_server.c

index 9ccf2f0a44193045c5e9c648a79f56d952757bbc..a5b1e9147179f4371986ebad08dae8a65a0b788f 100644 (file)
@@ -1750,9 +1750,11 @@ static int sv_body(char *hostname, int s, unsigned char *context)
        unsigned long l;
        SSL *con=NULL;
        BIO *sbio;
-       struct timeval timeout, *timeoutp;
+       struct timeval timeout;
 #if defined(OPENSSL_SYS_WINDOWS) || defined(OPENSSL_SYS_MSDOS) || defined(OPENSSL_SYS_NETWARE) || defined(OPENSSL_SYS_BEOS_R5)
        struct timeval tv;
+#else
+       struct timeval *timeoutp;
 #endif
 
        if ((buf=OPENSSL_malloc(bufsize)) == NULL)