diff options
author | Stefan Metzmacher <metze@samba.org> | 2011-12-13 11:53:10 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2011-12-13 15:45:36 +0100 |
commit | 611ab8aaa779c1e426a918eb376b8a8e44bc56ef (patch) | |
tree | 48784ed5afc683777e38ff9542a0dd6f652730f8 | |
parent | 1399e6bdf52d2ef08d1cea918a171108c502900a (diff) | |
download | samba-611ab8aaa779c1e426a918eb376b8a8e44bc56ef.tar.gz samba-611ab8aaa779c1e426a918eb376b8a8e44bc56ef.tar.bz2 samba-611ab8aaa779c1e426a918eb376b8a8e44bc56ef.zip |
s3:lib/dummyparam: remove unused conn_snum_used() dummy
metze
-rw-r--r-- | source3/include/proto.h | 1 | ||||
-rw-r--r-- | source3/lib/dummyparam.c | 5 |
2 files changed, 0 insertions, 6 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index 448aa5df75..2c12a5f5a5 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -1787,7 +1787,6 @@ void unbecome_root(void); /* The following definitions come from lib/dummysmbd.c */ int find_service(TALLOC_CTX *ctx, const char *service_in, char **p_service_out); -bool conn_snum_used(struct smbd_server_connection *sconn, int snum); void cancel_pending_lock_requests_by_fid(files_struct *fsp, struct byte_range_lock *br_lck, enum file_close_type close_type); diff --git a/source3/lib/dummyparam.c b/source3/lib/dummyparam.c index bad5d56ffc..91dda65dee 100644 --- a/source3/lib/dummyparam.c +++ b/source3/lib/dummyparam.c @@ -28,8 +28,3 @@ int find_service(TALLOC_CTX *ctx, const char *service_in, char **p_service_out) return -1; } -bool conn_snum_used(struct smbd_server_connection *sconn, - int snum) -{ - return False; -} |