diff options
author | Stefan Metzmacher <metze@samba.org> | 2006-01-10 16:51:46 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:50:03 -0500 |
commit | b424fdd2533068ed06aef648f126912fe3d8254f (patch) | |
tree | 2a1286304cd7920ec28c785990d311165a04dc4b /source4/lib/ldb | |
parent | 4d1c5a023cf6680474bd8d8be73f576d155cfe81 (diff) | |
download | samba-b424fdd2533068ed06aef648f126912fe3d8254f.tar.gz samba-b424fdd2533068ed06aef648f126912fe3d8254f.tar.bz2 samba-b424fdd2533068ed06aef648f126912fe3d8254f.zip |
r12830: this can be const
metze
(This used to be commit 1876e245c49d521e89674dc1662a61e8f4cdc9b5)
Diffstat (limited to 'source4/lib/ldb')
-rw-r--r-- | source4/lib/ldb/common/ldb_modules.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/ldb/common/ldb_modules.c b/source4/lib/ldb/common/ldb_modules.c index 804bd654f3..e336a58901 100644 --- a/source4/lib/ldb/common/ldb_modules.c +++ b/source4/lib/ldb/common/ldb_modules.c @@ -113,7 +113,7 @@ int ldb_load_modules(struct ldb_context *ldb, const char *options[]) { char **modules = NULL; int i; - struct { + const struct { const char *name; ldb_module_init_t init; } well_known_modules[] = { |