mirror of
https://github.com/samba-team/samba.git
synced 2025-12-13 16:23:50 +03:00
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.
This commit is contained in:
@@ -446,7 +446,7 @@ void init_r_trust_dom(NET_R_TRUST_DOM_LIST *r_t,
|
||||
for (i = 0; i < num_doms; i++) {
|
||||
fstring domain_name;
|
||||
fstrcpy(domain_name, dom_name);
|
||||
strupper(domain_name);
|
||||
strupper_m(domain_name);
|
||||
init_unistr2(&r_t->uni_trust_dom_name[i], domain_name, strlen(domain_name)+1);
|
||||
/* the use of UNISTR2 here is non-standard. */
|
||||
r_t->uni_trust_dom_name[i].undoc = 0x1;
|
||||
|
||||
Reference in New Issue
Block a user