diff options
author | Stefan Metzmacher <metze@samba.org> | 2004-02-03 11:10:56 +0000 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2004-02-03 11:10:56 +0000 |
commit | 1c798aba40fb0e389c7a54ad3d8f7d45876f2809 (patch) | |
tree | 3ee4790e25089106db52b1f16d20583f7bf90b9e /source4/include/context.h | |
parent | a9b28120b84fd63e333d5be26fe8116c85f12c87 (diff) | |
download | samba-1c798aba40fb0e389c7a54ad3d8f7d45876f2809.tar.gz samba-1c798aba40fb0e389c7a54ad3d8f7d45876f2809.tar.xz samba-1c798aba40fb0e389c7a54ad3d8f7d45876f2809.zip |
- port AUTH and PASSDB subsystems to new
SMB_SUBSYSTEM() scheme
- some const fixes in ntvfs
metze
(This used to be commit af89a78123068767b1d134969c5651a0fd978b0d)
Diffstat (limited to 'source4/include/context.h')
-rw-r--r-- | source4/include/context.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/include/context.h b/source4/include/context.h index 7b156ed382..5c7d117050 100644 --- a/source4/include/context.h +++ b/source4/include/context.h @@ -71,7 +71,7 @@ struct tcon_context { BOOL admin_user; /* the NTVFS operations - see source/ntvfs/ and include/ntvfs.h for details */ - struct ntvfs_ops *ntvfs_ops; + const struct ntvfs_ops *ntvfs_ops; /* the reported filesystem type */ char *fs_type; @@ -359,7 +359,7 @@ struct server_context { struct event_context *events; /* process model specific operations */ - struct model_ops *model_ops; + const struct model_ops *model_ops; }; |