diff options
-rw-r--r-- | source3/include/proto.h | 2 | ||||
-rw-r--r-- | source3/param/loadparm.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index 2fe6b2d5e3..e7a172c93a 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -1193,7 +1193,7 @@ char *lp_os2_driver_map(void); const char *lp_lockdir(void); const char *lp_statedir(void); const char *lp_cachedir(void); -char *lp_piddir(void); +const char *lp_piddir(void); char *lp_mangling_method(void); int lp_mangle_prefix(void); char *lp_utmpdir(void); diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index 3ecae2e184..a4a55188bf 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -5601,7 +5601,7 @@ const char *lp_cachedir(void) { return(*(char **)(&Globals.szLockDir) ? *(char **)(&Globals.szLockDir) : ""); } -FN_GLOBAL_STRING(lp_piddir, &Globals.szPidDir) +FN_GLOBAL_CONST_STRING(lp_piddir, &Globals.szPidDir) FN_GLOBAL_STRING(lp_mangling_method, &Globals.szManglingMethod) FN_GLOBAL_INTEGER(lp_mangle_prefix, &Globals.mangle_prefix) FN_GLOBAL_STRING(lp_utmpdir, &Globals.szUtmpDir) |