diff options
author | Kai Blin <kai@samba.org> | 2008-05-14 09:02:22 +0200 |
---|---|---|
committer | Kai Blin <kai@samba.org> | 2008-05-14 09:07:24 +0200 |
commit | 84ad491173a130552b19b23af293e239bbd7290b (patch) | |
tree | 19879ff8436f80aae1f7cbf474dd867888070100 /source3/lib | |
parent | 2ca5098e3591fa006a90f2f44dc1d5455f501703 (diff) | |
download | samba-84ad491173a130552b19b23af293e239bbd7290b.tar.gz samba-84ad491173a130552b19b23af293e239bbd7290b.tar.bz2 samba-84ad491173a130552b19b23af293e239bbd7290b.zip |
AFS: The dummy afs_createtoken_str should return NULL, not False.
(This used to be commit c84d49429191423a81d558042fe949c26f5de5fe)
Diffstat (limited to 'source3/lib')
-rw-r--r-- | source3/lib/afs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/afs.c b/source3/lib/afs.c index 9f5d81f442..c4569d97bb 100644 --- a/source3/lib/afs.c +++ b/source3/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 */ |