diff options
author | Jeremy Allison <jra@samba.org> | 2002-11-13 02:21:55 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2002-11-13 02:21:55 +0000 |
commit | e57853000aacc61ba3c73907a7afb85385b378c3 (patch) | |
tree | 18b9c835e74529291a0280af626de8f76f5582b7 /source/client | |
parent | 5170a9f7ffac93c619358353834bc3024a6746d2 (diff) | |
download | samba-e57853000aacc61ba3c73907a7afb85385b378c3.tar.gz samba-e57853000aacc61ba3c73907a7afb85385b378c3.tar.xz samba-e57853000aacc61ba3c73907a7afb85385b378c3.zip |
Sorry Jim we can't assign to global_xxx(), we need to call set_global_xxx()
to ensure the malloc is done.
Jeremy.
Diffstat (limited to 'source/client')
-rw-r--r-- | source/client/smbmount.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/client/smbmount.c b/source/client/smbmount.c index d8f5e1b394f..33adfc4d488 100644 --- a/source/client/smbmount.c +++ b/source/client/smbmount.c @@ -761,7 +761,7 @@ static void parse_mount_smb(int argc, char **argv) } else if(!strcmp(opts, "sockopt")) { pstrcpy(user_socket_options,opteq+1); } else if(!strcmp(opts, "scope")) { - pstrcpy(global_scope(),opteq+1); + set_global_scope(opteq+1); } else { slprintf(p, sizeof(pstring) - (p - options) - 1, "%s=%s,", opts, opteq+1); p += strlen(p); |