diff options
author | Volker Lendecke <vl@samba.org> | 2011-06-15 14:09:50 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2011-06-15 14:11:05 +0200 |
commit | 51567de6d7d91f727a2135cd2d5434f85db6d45a (patch) | |
tree | 4c6f27c5feaf782198cc961fcbc6c182547d9a1a | |
parent | 207a84d725b905c2b119d2ef0f4f4d4eb391140d (diff) | |
download | samba-51567de6d7d91f727a2135cd2d5434f85db6d45a.tar.gz samba-51567de6d7d91f727a2135cd2d5434f85db6d45a.tar.bz2 samba-51567de6d7d91f727a2135cd2d5434f85db6d45a.zip |
s3: Fix the return of make_new_server_info_guest
-rw-r--r-- | source3/auth/auth_util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/auth/auth_util.c b/source3/auth/auth_util.c index 1b986a0640..e2a3dadd46 100644 --- a/source3/auth/auth_util.c +++ b/source3/auth/auth_util.c @@ -811,7 +811,7 @@ static NTSTATUS make_new_server_info_guest(struct auth_serversupplied_info **ses status = NT_STATUS_OK; done: TALLOC_FREE(tmp_ctx); - return NT_STATUS_OK; + return status; } /*************************************************************************** |