diff options
author | Jeremy Allison <jra@samba.org> | 2003-07-03 19:11:31 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2003-07-03 19:11:31 +0000 |
commit | ff222716a08af65d26ad842ce4c2841cc6540959 (patch) | |
tree | 15a037eb0977e84bba245ad22d3002d46c2c740b /source/client/client.c | |
parent | 02bc7be1ac6b75bf6559ea684bbc89ab3e19402e (diff) | |
download | samba-ff222716a08af65d26ad842ce4c2841cc6540959.tar.gz samba-ff222716a08af65d26ad842ce4c2841cc6540959.tar.xz samba-ff222716a08af65d26ad842ce4c2841cc6540959.zip |
Removed strupper/strlower macros that automatically map to strupper_m/strlower_m.
I really want people to think about when they're using multibyte strings.
Jeremy.
Diffstat (limited to 'source/client/client.c')
-rw-r--r-- | source/client/client.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/client/client.c b/source/client/client.c index ea21957d73d..d9c3a7aa1b1 100644 --- a/source/client/client.c +++ b/source/client/client.c @@ -659,7 +659,7 @@ static int do_get(char *rname, char *lname, BOOL reget) GetTimeOfDay(&tp_start); if (lowercase) { - strlower(lname); + strlower_m(lname); } fnum = cli_open(cli, rname, O_RDONLY, DENY_NONE); @@ -834,7 +834,7 @@ static void do_mget(file_info *finfo) unix_format(finfo->name); if (lowercase) - strlower(finfo->name); + strlower_m(finfo->name); if (!directory_exist(finfo->name,NULL) && mkdir(finfo->name,0777) != 0) { |