1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-04 05:18:06 +03:00

Fix IRIX build...void fn can't return another void fn

This commit is contained in:
Jim McDonough 0001-01-01 00:00:00 +00:00
parent 822083f73e
commit df3c7c9cbb

View File

@ -131,7 +131,8 @@ krb5_error_code get_kerberos_allowed_etypes(krb5_context context,
krb5_enctype *enctypes) krb5_enctype *enctypes)
{ {
#if defined(HAVE_KRB5_FREE_KTYPES) #if defined(HAVE_KRB5_FREE_KTYPES)
return krb5_free_ktypes(context, enctypes); krb5_free_ktypes(context, enctypes);
return;
#else #else
SAFE_FREE(enctypes); SAFE_FREE(enctypes);
return; return;