From 97ba4f6efdcdb1e4f5d43ddeadfd06c7d96213f4 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Sun, 14 Jun 2009 12:41:46 +0200 Subject: Make winbindd_cli_state->response a pointer instead of a struct member Same comment as in baa6084378e530b: This is just a preparatory checkin. Volker --- source3/winbindd/winbindd_wins.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/winbindd/winbindd_wins.c') diff --git a/source3/winbindd/winbindd_wins.c b/source3/winbindd/winbindd_wins.c index 13cbb24b06..f5727cc9b7 100644 --- a/source3/winbindd/winbindd_wins.c +++ b/source3/winbindd/winbindd_wins.c @@ -185,7 +185,7 @@ void winbindd_wins_byip(struct winbindd_cli_state *state) response[strlen(response)-1] = '\n'; SAFE_FREE(status); } - fstrcpy(state->response.data.winsresp,response); + fstrcpy(state->response->data.winsresp,response); request_ok(state); } @@ -241,7 +241,7 @@ void winbindd_wins_byname(struct winbindd_cli_state *state) return; } - fstrcpy(state->response.data.winsresp,response); + fstrcpy(state->response->data.winsresp,response); request_ok(state); } -- cgit