diff options
author | Martin Pool <mbp@samba.org> | 2001-11-19 02:49:53 +0000 |
---|---|---|
committer | Martin Pool <mbp@samba.org> | 2001-11-19 02:49:53 +0000 |
commit | 79ec88f0da40faebe1e587f1b3e87b5f2b184f58 (patch) | |
tree | a23afbb4a9526bc68e30350d800a9a086b735572 /source/pam_smbpass | |
parent | 91e07a7fdc47b2baf42fc06e77d1e1d883111668 (diff) | |
download | samba-79ec88f0da40faebe1e587f1b3e87b5f2b184f58.tar.gz samba-79ec88f0da40faebe1e587f1b3e87b5f2b184f58.tar.xz samba-79ec88f0da40faebe1e587f1b3e87b5f2b184f58.zip |
Store some path names in global variables initialized to configure
default, rather than in preprocessor macros.
Diffstat (limited to 'source/pam_smbpass')
-rw-r--r-- | source/pam_smbpass/support.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/pam_smbpass/support.c b/source/pam_smbpass/support.c index 86467927532..007fb922eb6 100644 --- a/source/pam_smbpass/support.c +++ b/source/pam_smbpass/support.c @@ -125,7 +125,7 @@ int make_remark( pam_handle_t * pamh, unsigned int ctrl int set_ctrl( int flags, int argc, const char **argv ) { int i = 0; - static pstring servicesf = CONFIGFILE; + static pstring servicesf = dyn_CONFIGFILE; const char *service_file = servicesf; unsigned int ctrl; |