mirror of
https://github.com/moparisthebest/curl
synced 2024-11-11 20:15:03 -05:00
krb5.c: fix compiler warning: variable set but not used
This commit is contained in:
parent
3b06f1fb36
commit
7bd2add06f
@ -2,7 +2,7 @@
|
|||||||
*
|
*
|
||||||
* Copyright (c) 1995, 1996, 1997, 1998, 1999 Kungliga Tekniska Högskolan
|
* Copyright (c) 1995, 1996, 1997, 1998, 1999 Kungliga Tekniska Högskolan
|
||||||
* (Royal Institute of Technology, Stockholm, Sweden).
|
* (Royal Institute of Technology, Stockholm, Sweden).
|
||||||
* Copyright (c) 2004 - 2011 Daniel Stenberg
|
* Copyright (c) 2004 - 2012 Daniel Stenberg
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* Redistribution and use in source and binary forms, with or without
|
* Redistribution and use in source and binary forms, with or without
|
||||||
@ -313,10 +313,13 @@ krb5_auth(void *app_data, struct connectdata *conn)
|
|||||||
|
|
||||||
static void krb5_end(void *app_data)
|
static void krb5_end(void *app_data)
|
||||||
{
|
{
|
||||||
OM_uint32 maj, min;
|
OM_uint32 min;
|
||||||
gss_ctx_id_t *context = app_data;
|
gss_ctx_id_t *context = app_data;
|
||||||
if(*context != GSS_C_NO_CONTEXT) {
|
if(*context != GSS_C_NO_CONTEXT) {
|
||||||
maj = gss_delete_sec_context(&min, context, GSS_C_NO_BUFFER);
|
#ifdef DEBUGBUILD
|
||||||
|
OM_uint32 maj =
|
||||||
|
#endif
|
||||||
|
gss_delete_sec_context(&min, context, GSS_C_NO_BUFFER);
|
||||||
DEBUGASSERT(maj == GSS_S_COMPLETE);
|
DEBUGASSERT(maj == GSS_S_COMPLETE);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user