summaryrefslogtreecommitdiffstats
path: root/source/msdfs
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2003-07-03 19:11:31 +0000
committerJeremy Allison <jra@samba.org>2003-07-03 19:11:31 +0000
commitff222716a08af65d26ad842ce4c2841cc6540959 (patch)
tree15a037eb0977e84bba245ad22d3002d46c2c740b /source/msdfs
parent02bc7be1ac6b75bf6559ea684bbc89ab3e19402e (diff)
downloadsamba-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/msdfs')
-rw-r--r--source/msdfs/msdfs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/msdfs/msdfs.c b/source/msdfs/msdfs.c
index d4ec0b830fd..ce6e64d9157 100644
--- a/source/msdfs/msdfs.c
+++ b/source/msdfs/msdfs.c
@@ -164,7 +164,7 @@ BOOL is_msdfs_link(connection_struct* conn, char* path,
if (!path || !conn)
return False;
- strlower(path);
+ strlower_m(path);
if (sbufp == NULL)
sbufp = &st;
@@ -740,7 +740,7 @@ static BOOL junction_to_local_path(struct junction_map* jn, char* path,
safe_strcpy(path, lp_pathname(snum), max_pathlen-1);
safe_strcat(path, "/", max_pathlen-1);
- strlower(jn->volume_name);
+ strlower_m(jn->volume_name);
safe_strcat(path, jn->volume_name, max_pathlen-1);
pstrcpy(conn_path, lp_pathname(snum));