diff options
Diffstat (limited to 'source4/ntvfs')
-rw-r--r-- | source4/ntvfs/common/brlock.c | 4 | ||||
-rw-r--r-- | source4/ntvfs/common/opendb.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/source4/ntvfs/common/brlock.c b/source4/ntvfs/common/brlock.c index 607947615e..d4b152cf42 100644 --- a/source4/ntvfs/common/brlock.c +++ b/source4/ntvfs/common/brlock.c @@ -61,7 +61,7 @@ struct brl_context { struct tdb_wrap *w; servid_t server; uint16_t tid; - void *messaging_ctx; + struct messaging_context *messaging_ctx; struct lock_struct last_lock_failure; }; @@ -72,7 +72,7 @@ struct brl_context { pending lock notifications. */ struct brl_context *brl_init(TALLOC_CTX *mem_ctx, servid_t server, uint16_t tid, - void *messaging_ctx) + struct messaging_context *messaging_ctx) { char *path; struct brl_context *brl; diff --git a/source4/ntvfs/common/opendb.c b/source4/ntvfs/common/opendb.c index a3924daf8e..d8ca4c999d 100644 --- a/source4/ntvfs/common/opendb.c +++ b/source4/ntvfs/common/opendb.c @@ -44,7 +44,7 @@ struct odb_context { struct tdb_wrap *w; servid_t server; uint16_t tid; - void *messaging_ctx; + struct messaging_context *messaging_ctx; }; /* @@ -76,7 +76,7 @@ struct odb_lock { notifications. */ struct odb_context *odb_init(TALLOC_CTX *mem_ctx, servid_t server, uint16_t tid, - void *messaging_ctx) + struct messaging_context *messaging_ctx) { char *path; struct odb_context *odb; |