diff options
author | Andrew Bartlett <abartlet@samba.org> | 2002-01-26 06:28:50 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2002-01-26 06:28:50 +0000 |
commit | 7547398c97f1e5f67287a8e319eed146de2ecf05 (patch) | |
tree | f7ed3e12f199ccddcf0dee590963f138246ba426 /source3/include/passdb.h | |
parent | 714cdd47cb3e0e1f683c0a22396f9167a85e7df3 (diff) | |
download | samba-7547398c97f1e5f67287a8e319eed146de2ecf05.tar.gz samba-7547398c97f1e5f67287a8e319eed146de2ecf05.tar.xz 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.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/include/passdb.h b/source3/include/passdb.h index 178b3a43592..071ebdbfe55 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); |