Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Poirier <theeth@yahoo.com>2010-02-06 19:39:44 +0300
committerMartin Poirier <theeth@yahoo.com>2010-02-06 19:39:44 +0300
commitd3afaa20be10a3bac7c9019e067af947a2e8d5b3 (patch)
tree96b7bed4a4112caf0c3ce6d2e9d3c09121101698 /source/blender/blenlib/intern/BLI_args.c
parent9063f549d5db4347a3d10e39bb2dd78a822d34ae (diff)
[#20994] seem that -F flags is not honored any more on linux ubuntu 9.10
Case Insensitive flag was reversed, making -F act like -f.
Diffstat (limited to 'source/blender/blenlib/intern/BLI_args.c')
-rw-r--r--source/blender/blenlib/intern/BLI_args.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenlib/intern/BLI_args.c b/source/blender/blenlib/intern/BLI_args.c
index 9d67556a599..b3ecb012282 100644
--- a/source/blender/blenlib/intern/BLI_args.c
+++ b/source/blender/blenlib/intern/BLI_args.c
@@ -129,7 +129,7 @@ void BLI_argsAdd(struct bArgs *ba, char *arg, int pass, BA_ArgCallback cb, void
key->arg = arg;
key->pass = pass;
- key->case_str = 1;
+ key->case_str = 0;
a->func = cb;
a->data = data;
@@ -144,7 +144,7 @@ void BLI_argsAddCase(struct bArgs *ba, char *arg, int pass, BA_ArgCallback cb, v
key->arg = arg;
key->pass = pass;
- key->case_str = 0;
+ key->case_str = 1;
a->func = cb;
a->data = data;