mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* defines.h (ENV_IGNORECASE): should define when DOSISH without
human68k. * hash.c (env_has_value, env_index): don't ignore case of value. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5029 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
7e42e5c01b
commit
2a9719235d
3 changed files with 8 additions and 9 deletions
|
@ -1,3 +1,10 @@
|
|||
Tue Nov 25 21:41:35 2003 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||
|
||||
* defines.h (ENV_IGNORECASE): should define when DOSISH without
|
||||
human68k.
|
||||
|
||||
* hash.c (env_has_value, env_index): don't ignore case of value.
|
||||
|
||||
Tue Nov 25 20:02:14 2003 Minero Aoki <aamine@loveruby.net>
|
||||
|
||||
* test/fileutils/test_fileutils.rb: do test in more deep
|
||||
|
|
|
@ -180,7 +180,7 @@ flush_register_windows(void)
|
|||
#define PATH_ENV "PATH"
|
||||
#endif
|
||||
|
||||
#if defined(DOSISH) || !defined(__human68k__)
|
||||
#if defined(DOSISH) && !defined(__human68k__)
|
||||
#define ENV_IGNORECASE
|
||||
#endif
|
||||
|
||||
|
|
8
hash.c
8
hash.c
|
@ -1598,11 +1598,7 @@ env_has_value(dmy, value)
|
|||
while (*env) {
|
||||
char *s = strchr(*env, '=');
|
||||
if (s++) {
|
||||
#ifdef ENV_IGNORECASE
|
||||
if (strncasecmp(s, RSTRING(value)->ptr, strlen(s)) == 0) {
|
||||
#else
|
||||
if (strncmp(s, RSTRING(value)->ptr, strlen(s)) == 0) {
|
||||
#endif
|
||||
FREE_ENVIRON(environ);
|
||||
return Qtrue;
|
||||
}
|
||||
|
@ -1625,11 +1621,7 @@ env_index(dmy, value)
|
|||
while (*env) {
|
||||
char *s = strchr(*env, '=');
|
||||
if (s++) {
|
||||
#ifdef ENV_IGNORECASE
|
||||
if (strncasecmp(s, RSTRING(value)->ptr, strlen(s)) == 0) {
|
||||
#else
|
||||
if (strncmp(s, RSTRING(value)->ptr, strlen(s)) == 0) {
|
||||
#endif
|
||||
str = env_str_new(*env, s-*env-1);
|
||||
FREE_ENVIRON(environ);
|
||||
return str;
|
||||
|
|
Loading…
Reference in a new issue