summaryrefslogtreecommitdiffstats
path: root/source/include/dynconfig.h
diff options
context:
space:
mode:
authorMartin Pool <mbp@samba.org>2001-11-19 03:52:09 +0000
committerMartin Pool <mbp@samba.org>2001-11-19 03:52:09 +0000
commit988fe772a39e08dec738b045021cd6e06b4e59c8 (patch)
tree554763927918611f3d8cb4184a86accbb53ff277 /source/include/dynconfig.h
parentdfaafcd6221412613f9e4eccdaaa2e84253def81 (diff)
downloadsamba-988fe772a39e08dec738b045021cd6e06b4e59c8.tar.gz
samba-988fe772a39e08dec738b045021cd6e06b4e59c8.tar.xz
samba-988fe772a39e08dec738b045021cd6e06b4e59c8.zip
dyn_LOCKDIR should be const because it's never modified directly --
it's just copied in to the parameter table and optionally overridden there.
Diffstat (limited to 'source/include/dynconfig.h')
-rw-r--r--source/include/dynconfig.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/include/dynconfig.h b/source/include/dynconfig.h
index 3aba194ab23..b6a186f91be 100644
--- a/source/include/dynconfig.h
+++ b/source/include/dynconfig.h
@@ -29,4 +29,5 @@ extern char const *dyn_SBINDIR,
extern pstring dyn_CONFIGFILE;
extern pstring dyn_LOGFILEBASE, dyn_LMHOSTSFILE;
-extern pstring dyn_LIBDIR, dyn_LOCKDIR;
+extern pstring dyn_LIBDIR;
+extern const pstring dyn_LOCKDIR;