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: openafs-devel-1_7_1~907 X-Git-Url: https://git.openafs.org/?p=openafs.git;a=commitdiff_plain;h=36f89a2ce4fdb488480a5979e4f096cf3bdacf3d 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 b5023cb..741c8cf 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; }