diff options
author | Andrew Bartlett <abartlet@samba.org> | 2004-06-29 09:20:18 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:56:49 -0500 |
commit | fe0706d5d5813edc29c909c4f74c593fb5717190 (patch) | |
tree | 1870278e4573deced94668afc94ca6adf7968bc9 /source4/smbd | |
parent | 118f3edd27f5adacc1da636ed05b33f04999584f (diff) | |
download | samba-fe0706d5d5813edc29c909c4f74c593fb5717190.tar.gz samba-fe0706d5d5813edc29c909c4f74c593fb5717190.tar.bz2 samba-fe0706d5d5813edc29c909c4f74c593fb5717190.zip |
r1292: Add const to the subsystem/module registration code.
Add some 'multi init' code, until we get a better set of infrustructure.
Andrew Bartlett
(This used to be commit 982422b2d286335378531ae9523e74192340af3c)
Diffstat (limited to 'source4/smbd')
-rw-r--r-- | source4/smbd/process_model.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/smbd/process_model.c b/source4/smbd/process_model.c index 16bce3913d..f981b36798 100644 --- a/source4/smbd/process_model.c +++ b/source4/smbd/process_model.c @@ -57,7 +57,7 @@ static int num_models; The 'name' can be later used by other backends to find the operations structure for this backend. */ -static NTSTATUS register_process_model(void *_ops) +static NTSTATUS register_process_model(const void *_ops) { const struct model_ops *ops = _ops; |