From: Kai Blin Date: Wed, 14 May 2008 07:02:22 +0000 (+0200) Subject: AFS: The dummy afs_createtoken_str should return NULL, not False. X-Git-Tag: samba-3.3.0pre1~1250 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c84d49429191423a81d558042fe949c26f5de5fe;p=thirdparty%2Fsamba.git AFS: The dummy afs_createtoken_str should return NULL, not False. --- diff --git a/source/lib/afs.c b/source/lib/afs.c index 9f5d81f4428..c4569d97bbf 100644 --- a/source/lib/afs.c +++ b/source/lib/afs.c @@ -294,7 +294,7 @@ bool afs_login(connection_struct *conn) char *afs_createtoken_str(const char *username, const char *cell) { - return False; + return NULL; } #endif /* WITH_FAKE_KASERVER */