diff options
Diffstat (limited to 'option.cc')
-rw-r--r-- | option.cc | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -155,9 +155,9 @@ void process_environment(std::list<option_t>& options, *q && *q != '=' && r - buf < 128; q++) if (*q == '_') - *r++ += '-'; + *r++ = '-'; else - *r++ += std::tolower(*q); + *r++ = std::tolower(*q); *r = '\0'; if (*q == '=') |