From d207ff2925d7740b6aaf24119530d694391895af Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Wed, 25 Jan 2012 16:30:49 -0500 Subject: Fix gssx_handle, no need for an array of creds, just 1 --- x-files/gss_proxy.x | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x-files/gss_proxy.x b/x-files/gss_proxy.x index a122072..0e428d3 100644 --- a/x-files/gss_proxy.x +++ b/x-files/gss_proxy.x @@ -345,7 +345,7 @@ struct gssx_ctx { enum gssx_handle_type { GSSX_C_HANDLE_SEC_CTX = 0, GSSX_C_HANDLE_CRED = 1 }; union gssx_handle switch (gssx_handle_type handle_type) { case GSSX_C_HANDLE_CRED: - gssx_cred cred_info<>; /* One per cred element */ + gssx_cred cred_info; case GSSX_C_HANDLE_SEC_CTX: gssx_ctx sec_ctx_info; default: -- cgit