From 2c38c32661427b48e548f27f538a15ff2543b84a Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 25 Dec 2012 14:09:51 +0000 Subject: make weight paint respect box & near clipping. also replace strncmp with BLI_path_ncmp for BLI_rebase_path, (so its case insensitive on windows) --- source/blender/blenlib/intern/path_util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/blenlib/intern/path_util.c') diff --git a/source/blender/blenlib/intern/path_util.c b/source/blender/blenlib/intern/path_util.c index 3c43fe2fb72..06b1f1f09b1 100644 --- a/source/blender/blenlib/intern/path_util.c +++ b/source/blender/blenlib/intern/path_util.c @@ -1619,7 +1619,7 @@ int BLI_rebase_path(char *abs, size_t abs_len, char *rel, size_t rel_len, const rel_dir[0] = 0; /* if image is "below" current .blend file directory */ - if (!strncmp(path, blend_dir, len)) { + if (!BLI_path_ncmp(path, blend_dir, len)) { /* if image is _in_ current .blend file directory */ if (BLI_path_cmp(dir, blend_dir) == 0) { -- cgit v1.2.3