From 9851e1989aa87dbd121fb16062d5ec2e969f1b81 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Mon, 26 Jul 2010 07:49:58 +0200 Subject: s3: Fix a structure mess-up I wonder why the compiler did not complain -- maybe because the structs have the same data members? No clue. --- source3/libsmb/clifile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3') diff --git a/source3/libsmb/clifile.c b/source3/libsmb/clifile.c index 07af894d34..802fab95a0 100644 --- a/source3/libsmb/clifile.c +++ b/source3/libsmb/clifile.c @@ -591,7 +591,7 @@ struct tevent_req *cli_posix_getfacl_send(TALLOC_CTX *mem_ctx, const char *fname) { struct tevent_req *req = NULL, *subreq = NULL; - struct link_state *state = NULL; + struct getfacl_state *state = NULL; req = tevent_req_create(mem_ctx, &state, struct getfacl_state); if (req == NULL) { -- cgit