diff options
author | Andrew Bartlett <abartlet@samba.org> | 2001-09-15 01:59:44 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2001-09-15 01:59:44 +0000 |
commit | 1c8c7c558b563e9a3bd0a11e9bc11947f99d700a (patch) | |
tree | 955339b29420e14220205aea1a8d64b68f78b79a /source3/smbd | |
parent | ab35704cc0a3b5a183c465fece1868b07739290f (diff) | |
download | samba-1c8c7c558b563e9a3bd0a11e9bc11947f99d700a.tar.gz samba-1c8c7c558b563e9a3bd0a11e9bc11947f99d700a.tar.bz2 samba-1c8c7c558b563e9a3bd0a11e9bc11947f99d700a.zip |
Actually fill in the status for sainity checks
Andrew Bartlett
(This used to be commit d47016de52e9e5c468edf4c87dc60535a9796b99)
Diffstat (limited to 'source3/smbd')
-rw-r--r-- | source3/smbd/service.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/service.c b/source3/smbd/service.c index df0f6f2095..62e51f797f 100644 --- a/source3/smbd/service.c +++ b/source3/smbd/service.c @@ -371,7 +371,7 @@ connection_struct *make_connection(char *service,char *user,char *password, } } - if (NT_STATUS_IS_ERR(share_sanity_checks(snum, service, dev))) { + if (NT_STATUS_IS_ERR(*status = share_sanity_checks(snum, service, dev))) { return NULL; } |