From 36f89a2ce4fdb488480a5979e4f096cf3bdacf3d Mon Sep 17 00:00:00 2001 From: Marc Dionne Date: Sat, 19 Feb 2011 15:11:30 -0500 Subject: [PATCH] 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 --- src/crypto/rfc3961/context.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.39.5