1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-23 09:57:40 +03:00

replace: Add socket_wrapper_enabled().

Signed-off-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Stefan Metzmacher <metze@samba.org>
This commit is contained in:
Andreas Schneider 2014-02-12 16:24:26 +01:00 committed by Stefan Metzmacher
parent 5de011be3f
commit a9c1d5bd63
2 changed files with 6 additions and 0 deletions

View File

@ -35,6 +35,11 @@ bool nss_wrapper_hosts_enabled(void)
return false;
}
bool socket_wrapper_enabled(void)
{
return false;
}
bool uid_wrapper_enabled(void)
{
return false;

View File

@ -901,6 +901,7 @@ void rep_setproctitle(const char *fmt, ...) PRINTF_ATTRIBUTE(1, 2);
bool nss_wrapper_enabled(void);
bool nss_wrapper_hosts_enabled(void);
bool socket_wrapper_enabled(void);
bool uid_wrapper_enabled(void);
#endif /* _LIBREPLACE_REPLACE_H */