summaryrefslogtreecommitdiff
path: root/source3/lib/smbd_shim.c
AgeCommit message (Collapse)AuthorFilesLines
2012-06-06s3:lib: we don't need smbd/proto.h in smbd_shim.cStefan Metzmacher1-1/+0
metze
2011-12-13s3: Move can_delete_directory to smbd/, remove shimVolker Lendecke1-9/+0
Autobuild-User: Volker Lendecke <vlendec@samba.org> Autobuild-Date: Tue Dec 13 19:00:37 CET 2011 on sn-devel-104
2011-06-21s3-build: Provide a run-time shim to work around duplicate symbolsAndrew Bartlett1-0/+110
The become_root() and similar 'smbd' functions that are used widely in Samba libraries had 'dummy' copies in dummysmbd.c and dummyroot.c. These have been replaced by a runtime plugin mechanim, which ensures that standlone binaries still do nothing, while in smbd the correct function is used. This avoids having these as duplicate symbols in the smbd binary, which can cause unpredictable behaviour. Andrew Bartlett Signed-off-by: Andrew Tridgell <tridge@samba.org>