Remove duplicate, unnecessary, variable declaration
authorMagnus Hagander <magnus@hagander.net>
Wed, 4 Jul 2012 14:16:54 +0000 (16:16 +0200)
committerMagnus Hagander <magnus@hagander.net>
Wed, 4 Jul 2012 14:17:30 +0000 (16:17 +0200)
src/backend/libpq/auth.c

index 9cdee2bb3e7bd2e42a6de3e37b006786066fe543..c7654549d15d13d8db6febf0e989b5c449acd613 100644 (file)
@@ -1098,8 +1098,6 @@ pg_GSS_recvauth(Port *port)
            /*
             * Negotiation generated data to be sent to the client.
             */
-           OM_uint32   lmin_s;
-
            elog(DEBUG4, "sending GSS response token of length %u",
                 (unsigned int) port->gss->outbuf.length);
 
@@ -1110,8 +1108,6 @@ pg_GSS_recvauth(Port *port)
 
        if (maj_stat != GSS_S_COMPLETE && maj_stat != GSS_S_CONTINUE_NEEDED)
        {
-           OM_uint32   lmin_s;
-
            gss_delete_sec_context(&lmin_s, &port->gss->ctx, GSS_C_NO_BUFFER);
            pg_GSS_error(ERROR,
                       gettext_noop("accepting GSS security context failed"),