summaryrefslogtreecommitdiff
path: root/source3/libsmb
diff options
context:
space:
mode:
authorJim McDonough <jmcd@samba.org>2003-02-19 15:46:15 +0000
committerJim McDonough <jmcd@samba.org>2003-02-19 15:46:15 +0000
commitf15ed71fbba9d3762f4e8a1382b65d6291a2a065 (patch)
treee37323bae5e25a1f048cb44a6fd14d053e202539 /source3/libsmb
parentffcee0c95e05f652f4eebf9b9d46bd51d059891b (diff)
downloadsamba-f15ed71fbba9d3762f4e8a1382b65d6291a2a065.tar.gz
samba-f15ed71fbba9d3762f4e8a1382b65d6291a2a065.tar.bz2
samba-f15ed71fbba9d3762f4e8a1382b65d6291a2a065.zip
Can't return SAFE_FREE...put on its own line.
(This used to be commit 9f1a4809b503f050189d5f87a294b7d8675b1e95)
Diffstat (limited to 'source3/libsmb')
-rw-r--r--source3/libsmb/clikrb5.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/libsmb/clikrb5.c b/source3/libsmb/clikrb5.c
index da120622ea..96e737166c 100644
--- a/source3/libsmb/clikrb5.c
+++ b/source3/libsmb/clikrb5.c
@@ -133,7 +133,8 @@ krb5_error_code get_kerberos_allowed_etypes(krb5_context context,
#if defined(HAVE_KRB5_FREE_KTYPES)
return krb5_free_ktypes(context, enctypes);
#else
- return SAFE_FREE(enctypes);
+ SAFE_FREE(enctypes);
+ return;
#endif
}