diff options
author | Simo Sorce <simo@redhat.com> | 2012-03-13 16:49:10 -0400 |
---|---|---|
committer | Simo Sorce <simo@redhat.com> | 2012-03-13 16:53:29 -0400 |
commit | 42ba89c40350c6a539a66fe853a9a64676abf610 (patch) | |
tree | 903e52250ffa259cff4866866ea29363be7ba44c /proxy/rpcgen/gss_proxy.h | |
parent | c8134bd66c95812396b07f2f90f832b171555604 (diff) | |
download | gss-proxy-42ba89c40350c6a539a66fe853a9a64676abf610.tar.gz gss-proxy-42ba89c40350c6a539a66fe853a9a64676abf610.tar.xz gss-proxy-42ba89c40350c6a539a66fe853a9a64676abf610.zip |
gss-proxy.x: We do not need pointers in gssx_ctx
There is no need to distinguish between empty buffer and no buffer.
Diffstat (limited to 'proxy/rpcgen/gss_proxy.h')
-rw-r--r-- | proxy/rpcgen/gss_proxy.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/proxy/rpcgen/gss_proxy.h b/proxy/rpcgen/gss_proxy.h index 2612ca5..2b54858 100644 --- a/proxy/rpcgen/gss_proxy.h +++ b/proxy/rpcgen/gss_proxy.h @@ -156,8 +156,8 @@ struct gssx_cred { typedef struct gssx_cred gssx_cred; struct gssx_ctx { - gssx_buffer *exported_context_token; - octet_string *state; + gssx_buffer exported_context_token; + octet_string state; bool_t needs_release; gssx_OID mech; gssx_name src_name; |