diff options
author | Volker Lendecke <vl@samba.org> | 2009-08-04 06:58:28 -0400 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2009-08-05 03:21:20 -0400 |
commit | 74b45ba46cbf58c1bf9ef89f5f88509065cd81d2 (patch) | |
tree | 5220d6ebdc7ca3ea610fc6abe7230d8479b0dc0c /source3 | |
parent | fa59f9720d56ffaf07c13376118c452a4162f3df (diff) | |
download | samba-74b45ba46cbf58c1bf9ef89f5f88509065cd81d2.tar.gz samba-74b45ba46cbf58c1bf9ef89f5f88509065cd81d2.tar.bz2 samba-74b45ba46cbf58c1bf9ef89f5f88509065cd81d2.zip |
s3:winbind: Remove old version of WINBINDD_PING
Diffstat (limited to 'source3')
-rw-r--r-- | source3/winbindd/winbindd.c | 1 | ||||
-rw-r--r-- | source3/winbindd/winbindd_misc.c | 6 |
2 files changed, 0 insertions, 7 deletions
diff --git a/source3/winbindd/winbindd.c b/source3/winbindd/winbindd.c index e76a0de30f..867e9df8d9 100644 --- a/source3/winbindd/winbindd.c +++ b/source3/winbindd/winbindd.c @@ -487,7 +487,6 @@ static struct winbindd_dispatch_table { /* Miscellaneous */ { WINBINDD_CHECK_MACHACC, winbindd_check_machine_acct, "CHECK_MACHACC" }, - { WINBINDD_PING, winbindd_ping, "PING" }, { WINBINDD_INFO, winbindd_info, "INFO" }, { WINBINDD_INTERFACE_VERSION, winbindd_interface_version, "INTERFACE_VERSION" }, diff --git a/source3/winbindd/winbindd_misc.c b/source3/winbindd/winbindd_misc.c index 3f71910023..c6608316d1 100644 --- a/source3/winbindd/winbindd_misc.c +++ b/source3/winbindd/winbindd_misc.c @@ -741,12 +741,6 @@ static void domain_info_done(struct tevent_req *req) request_ok(state->cli); } -void winbindd_ping(struct winbindd_cli_state *state) -{ - DEBUG(3, ("[%5lu]: ping\n", (unsigned long)state->pid)); - request_ok(state); -} - /* List various tidbits of information */ void winbindd_info(struct winbindd_cli_state *state) |