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/smbwrapper/smbsh.c | |
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/smbwrapper/smbsh.c')
-rw-r--r-- | source/smbwrapper/smbsh.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/smbwrapper/smbsh.c b/source/smbwrapper/smbsh.c index f0cdc1f0536..694c6dd7994 100644 --- a/source/smbwrapper/smbsh.c +++ b/source/smbwrapper/smbsh.c @@ -37,7 +37,7 @@ static void smbsh_usage(void) int main(int argc, char *argv[]) { char *p, *u; - char *libd = BINDIR; + char *libd = dyn_BINDIR; pstring line, wd; int opt; extern char *optarg; |