summaryrefslogtreecommitdiff
path: root/source3/include/passdb.h
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2002-01-26 06:28:50 +0000
committerAndrew Bartlett <abartlet@samba.org>2002-01-26 06:28:50 +0000
commit7547398c97f1e5f67287a8e319eed146de2ecf05 (patch)
treef7ed3e12f199ccddcf0dee590963f138246ba426 /source3/include/passdb.h
parent714cdd47cb3e0e1f683c0a22396f9167a85e7df3 (diff)
downloadsamba-7547398c97f1e5f67287a8e319eed146de2ecf05.tar.gz
samba-7547398c97f1e5f67287a8e319eed146de2ecf05.tar.bz2
samba-7547398c97f1e5f67287a8e319eed146de2ecf05.zip
This always points at a string literal, so it probably should be 'const'.
(This used to be commit e72e511935ce7f2b658a133bd536833864bc6a92)
Diffstat (limited to 'source3/include/passdb.h')
-rw-r--r--source3/include/passdb.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/include/passdb.h b/source3/include/passdb.h
index 178b3a4359..071ebdbfe5 100644
--- a/source3/include/passdb.h
+++ b/source3/include/passdb.h
@@ -59,7 +59,7 @@ typedef struct pdb_context
typedef struct pdb_methods
{
- char *name; /* What name got this module */
+ const char *name; /* What name got this module */
BOOL (*setsampwent)(struct pdb_context *, BOOL update);