From 1ec644619d9607758cf090ea904eb2d84500481c Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Fri, 22 Oct 2004 01:14:49 +0000 Subject: r3126: in the brlock code I had used a void* for the brl context as I didn't want to expose the brl context structure outside the brlock.c code. Instead, I now use "struct brl_context *" and rely on C being happy to pass around pointers to unknown structures as long as they are not dereferenced. I will be interested to see how the build farm likes this. (This used to be commit cb155c8ad837285c5a7f5b104968239df0b65fd2) --- source4/ntvfs/posix/vfs_posix.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/ntvfs/posix') diff --git a/source4/ntvfs/posix/vfs_posix.h b/source4/ntvfs/posix/vfs_posix.h index ae601c60c7..a0aacf3786 100644 --- a/source4/ntvfs/posix/vfs_posix.h +++ b/source4/ntvfs/posix/vfs_posix.h @@ -36,7 +36,7 @@ struct pvfs_state { struct pvfs_mangle_context *mangle_ctx; - void *brl_context; + struct brl_context *brl_context; /* an id tree mapping open search ID to a pvfs_search_state structure */ void *idtree_search; -- cgit