From 7ec58471dfd12cbd3aa38a07145b1ecceaec1933 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Fri, 24 Oct 2008 02:51:03 +0200 Subject: Split up codepoints code, use consistent _m suffix. --- source4/ntvfs/posix/pvfs_util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/ntvfs/posix/pvfs_util.c') diff --git a/source4/ntvfs/posix/pvfs_util.c b/source4/ntvfs/posix/pvfs_util.c index b52c3e387b..720ddaaa7b 100644 --- a/source4/ntvfs/posix/pvfs_util.c +++ b/source4/ntvfs/posix/pvfs_util.c @@ -183,7 +183,7 @@ uint32_t pvfs_name_hash(const char *key, size_t length) while (*key && length--) { size_t c_size; codepoint_t c = next_codepoint(lp_iconv_convenience(global_loadparm), key, &c_size); - c = toupper_w(c); + c = toupper_m(c); value *= fnv1_prime; value ^= (uint32_t)c; key += c_size; -- cgit