remove redundant code from demo
authorDr. Stephen Henson <steve@openssl.org>
Sun, 18 Nov 2012 14:47:25 +0000 (14:47 +0000)
committerDr. Stephen Henson <steve@openssl.org>
Sun, 18 Nov 2012 14:47:25 +0000 (14:47 +0000)
demos/bio/saccept.c

index 40cd4daad2939d2768d4048444b09cf3bd3e4482..d3f8442ffd5801488c41493f5e2d705c8dfeb933 100644 (file)
@@ -25,14 +25,11 @@ void close_up()
                BIO_free(in);
        }
 
-int main(argc,argv)
-int argc;
-char *argv[];
+int main(int argc, char *argv[])
        {
        char *port=NULL;
        BIO *ssl_bio,*tmp;
        SSL_CTX *ctx;
-       SSL *ssl;
        char buf[512];
        int ret=1,i;
 
@@ -45,11 +42,6 @@ char *argv[];
 
        SSL_load_error_strings();
 
-#ifdef WATT32
-       dbug_init();
-       sock_init();
-#endif
-
        /* Add ciphers and message digests */
        OpenSSL_add_ssl_algorithms();
 
@@ -62,7 +54,6 @@ char *argv[];
                goto err;
 
        /* Setup server side SSL bio */
-       ssl=SSL_new(ctx);
        ssl_bio=BIO_new_ssl(ctx,0);
 
        if ((in=BIO_new_accept(port)) == NULL) goto err;