From: Marc Dionne Date: Fri, 1 Apr 2011 22:53:31 +0000 (-0400) Subject: crypto: return a value from krb5_abortx X-Git-Tag: upstream/1.8.0_pre1^2~3939 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=e0e648919157bb30507401c020ea67b040da6224;p=packages%2Fo%2Fopenafs.git crypto: return a value from krb5_abortx The krb5_abortx stub is declared as returning a krb5_error_code, so make it return something to avoid a warning. Change-Id: Ib5b915c1c4e034b5c8393206c80596e5d6d5fc8b Reviewed-on: http://gerrit.openafs.org/4396 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 434fe974a..bb2dec5e9 100644 --- a/src/crypto/rfc3961/context.c +++ b/src/crypto/rfc3961/context.c @@ -17,5 +17,5 @@ krb5_set_error_message(krb5_context ctx, krb5_error_code ret, const char *fmt, krb5_error_code krb5_abortx(krb5_context ctx, const char *fmt, ...) { - return; + return 0; }