1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-03 13:47:25 +03:00

s3:lib/dummyparam: remove unused conn_snum_used() dummy

metze
This commit is contained in:
Stefan Metzmacher 2011-12-13 11:53:10 +01:00
parent 1399e6bdf5
commit 611ab8aaa7
2 changed files with 0 additions and 6 deletions

View File

@ -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);

View File

@ -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;
}