diff options
author | Andrew Tridgell <tridge@samba.org> | 2004-10-22 01:14:49 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:02:24 -0500 |
commit | 1ec644619d9607758cf090ea904eb2d84500481c (patch) | |
tree | 66c4fdfc8e0c079ae72baf3659e73be33fd42f1d /source4/ntvfs/posix | |
parent | 27129573ff5b87ac8b107d267cde87b516d9e6b9 (diff) | |
download | samba-1ec644619d9607758cf090ea904eb2d84500481c.tar.gz samba-1ec644619d9607758cf090ea904eb2d84500481c.tar.bz2 samba-1ec644619d9607758cf090ea904eb2d84500481c.zip |
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)
Diffstat (limited to 'source4/ntvfs/posix')
-rw-r--r-- | source4/ntvfs/posix/vfs_posix.h | 2 |
1 files changed, 1 insertions, 1 deletions
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; |