From: Marc Dionne Date: Sat, 19 Feb 2011 20:11:30 +0000 (-0500) Subject: crypto: return a value from the krb5_init_context stub X-Git-Tag: upstream/1.8.0_pre1^2~4159 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=36f89a2ce4fdb488480a5979e4f096cf3bdacf3d;p=packages%2Fo%2Fopenafs.git crypto: return a value from the krb5_init_context stub The krb5_init_context stub is declared as returning an int, so make it return 0 to avoid a warning. Change-Id: I1e04d6953cf4daed67c7b1de9414113812148931 Reviewed-on: http://gerrit.openafs.org/4019 Tested-by: BuildBot Reviewed-by: Simon Wilkinson Reviewed-by: Derrick Brashear --- diff --git a/src/crypto/rfc3961/context.c b/src/crypto/rfc3961/context.c index b5023cbc0..741c8cf96 100644 --- a/src/crypto/rfc3961/context.c +++ b/src/crypto/rfc3961/context.c @@ -4,5 +4,5 @@ int krb5_init_context(krb5_context *ctx) { - return; + return 0; }