From da20ed7625599d307a5e91a539716b2fa8c14a02 Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Mon, 23 Jan 2012 16:24:41 -0500 Subject: Use correct type for exported context gss_export_context() returns a gss_buffer_t, so match it in the gssx_ctx structure by using the correlated gssx_buffer type instead of octet_string. --- 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 a3bb6b3..a122072 100644 --- a/x-files/gss_proxy.x +++ b/x-files/gss_proxy.x @@ -315,7 +315,7 @@ struct gssx_cred { */ struct gssx_ctx { /* The exported context token, if available */ - octet_string *exported_context_token; /* exported context token */ + gssx_buffer *exported_context_token; octet_string *state; /* * Stateful servers MUST be able to clean up unreferenced state -- cgit