summaryrefslogtreecommitdiff
path: root/source
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
commite72e511935ce7f2b658a133bd536833864bc6a92 (patch)
tree196f0f433a9462fd4b79b4da1c5d4775c895c9d2 /source
parent554842e0a55155193f25aefca6480b89d5c512ca (diff)
downloadsamba-e72e511935ce7f2b658a133bd536833864bc6a92.tar.gz
This always points at a string literal, so it probably should be 'const'.
Diffstat (limited to 'source')
-rw-r--r--source/include/passdb.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/include/passdb.h b/source/include/passdb.h
index 178b3a43592..071ebdbfe55 100644
--- a/source/include/passdb.h
+++ b/source/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);