diff options
author | Samba Release Account <samba-bugs@samba.org> | 1997-05-08 21:17:59 +0000 |
---|---|---|
committer | Samba Release Account <samba-bugs@samba.org> | 1997-05-08 21:17:59 +0000 |
commit | 441855fe0e6b37201d2ef6a8375de4bcc76b9752 (patch) | |
tree | 4e252f09f197b913fca984f038a97be1c9d21abf /source3/client | |
parent | b54b581b85cbc9f19508b864716ca7d17e31497d (diff) | |
download | samba-441855fe0e6b37201d2ef6a8375de4bcc76b9752.tar.gz samba-441855fe0e6b37201d2ef6a8375de4bcc76b9752.tar.bz2 samba-441855fe0e6b37201d2ef6a8375de4bcc76b9752.zip |
status.c: Added brief option. Patch from ccctim@mailbox.ucdavis.edu
client.c: Added translation of '/' characters to '\' characters. Suggested by friedl@mtndew.com (Stephen J. Friedl)
charcn.c: Fix for iso8859-2 (Eastern European) conversions based on a patch from Miroslaw M. Maczka <elvisbze@polbox.com>
(This used to be commit 27708a73cef690ea8aea0f3d82619eaed1fe476d)
Diffstat (limited to 'source3/client')
-rw-r--r-- | source3/client/client.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/client/client.c b/source3/client/client.c index a9e81cfd64..e023530cb5 100644 --- a/source3/client/client.c +++ b/source3/client/client.c @@ -4291,8 +4291,6 @@ static void usage(char *pname) DEBUG(0,("\n")); } - - /**************************************************************************** main program ****************************************************************************/ @@ -4349,6 +4347,8 @@ static void usage(char *pname) { strcpy(service,argv[1]); + /* Convert any '/' characters in the service name to '\' characters */ + string_replace( service, '/','\\'); argc--; argv++; |