diff options
author | Simo Sorce <simo@redhat.com> | 2012-01-25 16:30:49 -0500 |
---|---|---|
committer | Simo Sorce <simo@redhat.com> | 2012-01-25 16:35:29 -0500 |
commit | d207ff2925d7740b6aaf24119530d694391895af (patch) | |
tree | 9cc65115681a807e3670bb5a64e36e44530cb63b /x-files | |
parent | de5ed03701330989cfbd85ba3a59bce33fceb261 (diff) | |
download | gss-proxy-d207ff2925d7740b6aaf24119530d694391895af.tar.gz gss-proxy-d207ff2925d7740b6aaf24119530d694391895af.tar.xz gss-proxy-d207ff2925d7740b6aaf24119530d694391895af.zip |
Fix gssx_handle, no need for an array of creds, just 1
Diffstat (limited to 'x-files')
-rw-r--r-- | x-files/gss_proxy.x | 2 |
1 files changed, 1 insertions, 1 deletions
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: |