diff options
author | Volker Lendecke <vl@samba.org> | 2010-07-26 07:49:58 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2010-07-26 09:51:36 +0200 |
commit | 9851e1989aa87dbd121fb16062d5ec2e969f1b81 (patch) | |
tree | 7a29283f3050823c193529f79913d7e840fc1443 /source3 | |
parent | cc8977b15723667eae995c120c6086f3b97f051d (diff) | |
download | samba-9851e1989aa87dbd121fb16062d5ec2e969f1b81.tar.gz samba-9851e1989aa87dbd121fb16062d5ec2e969f1b81.tar.bz2 samba-9851e1989aa87dbd121fb16062d5ec2e969f1b81.zip |
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.
Diffstat (limited to 'source3')
-rw-r--r-- | source3/libsmb/clifile.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) { |