diff options
author | Volker Lendecke <vl@samba.org> | 2010-01-23 18:06:53 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2010-01-23 19:14:50 +0100 |
commit | c821be415b6798d0eaf182e18234513c36d42336 (patch) | |
tree | 4c209b6803d551aac9b6b1b241b961217b6fec68 /nsswitch/winbind_client.h | |
parent | dff03b61fd5d923562711b38cc7dbe996dc07283 (diff) | |
download | samba-c821be415b6798d0eaf182e18234513c36d42336.tar.gz |
nsswitch: Make some functions static
Diffstat (limited to 'nsswitch/winbind_client.h')
-rw-r--r-- | nsswitch/winbind_client.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/nsswitch/winbind_client.h b/nsswitch/winbind_client.h index b004d9c2c02..d4f60a2f9ce 100644 --- a/nsswitch/winbind_client.h +++ b/nsswitch/winbind_client.h @@ -1,7 +1,6 @@ #include "winbind_nss_config.h" #include "winbind_struct_protocol.h" -void winbindd_init_request(struct winbindd_request *req,int rq_type); void winbindd_free_response(struct winbindd_response *response); NSS_STATUS winbindd_send_request(int req_type, int need_priv, struct winbindd_request *request); @@ -12,8 +11,6 @@ NSS_STATUS winbindd_request_response(int req_type, NSS_STATUS winbindd_priv_request_response(int req_type, struct winbindd_request *request, struct winbindd_response *response); -int winbindd_read_reply(struct winbindd_response *response); - #define winbind_env_set() \ (strcmp(getenv(WINBINDD_DONT_ENV)?getenv(WINBINDD_DONT_ENV):"0","1") == 0) @@ -23,8 +20,5 @@ int winbindd_read_reply(struct winbindd_response *response); #define winbind_on() \ (setenv(WINBINDD_DONT_ENV, "0", 1) == 0) -int winbind_write_sock(void *buffer, int count, int recursing, int need_priv); -int winbind_read_sock(void *buffer, int count); -void winbind_close_sock(void); const char *nss_err_str(NSS_STATUS ret); |