summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGünther Deschner <gdeschner@redhat.com>2012-10-18 17:45:14 +0200
committerGünther Deschner <gdeschner@redhat.com>2012-10-18 17:45:59 +0200
commit7959082a1db8d574b4ed069dce13ced64e9c05b6 (patch)
tree7d2a85d38009c34d6bf8d3b3186ade7b65cfcc1c
parentfce728281b1149162b68790ad681eb9e0a5d250b (diff)
downloadgss-proxy-7959082a1db8d574b4ed069dce13ced64e9c05b6.tar.gz
gss-proxy-7959082a1db8d574b4ed069dce13ced64e9c05b6.tar.xz
gss-proxy-7959082a1db8d574b4ed069dce13ced64e9c05b6.zip
Avoid infinite loop in gssi_wrap_size_limit()
-rw-r--r--proxy/src/mechglue/gpp_priv_integ.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/proxy/src/mechglue/gpp_priv_integ.c b/proxy/src/mechglue/gpp_priv_integ.c
index 7081e8e..a27dae4 100644
--- a/proxy/src/mechglue/gpp_priv_integ.c
+++ b/proxy/src/mechglue/gpp_priv_integ.c
@@ -84,9 +84,9 @@ OM_uint32 gssi_wrap_size_limit(OM_uint32 *minor_status,
}
}
- return gssi_wrap_size_limit(minor_status, ctx_handle->local,
- conf_req_flag, qop_req,
- req_output_size, max_input_size);
+ return gss_wrap_size_limit(minor_status, ctx_handle->local,
+ conf_req_flag, qop_req,
+ req_output_size, max_input_size);
}
OM_uint32 gssi_wrap_iov(OM_uint32 *minor_status,