added SymbolString::adjustHeader(), avoid strcasecmp, code style

This commit is contained in:
john30
2017-04-17 17:46:32 +02:00
parent aaea8f72ab
commit 47ed6dde3f
8 changed files with 33 additions and 19 deletions
+1 -1
View File
@@ -98,7 +98,7 @@ result_t TemParamDataType::writeSymbols(istringstream& input,
string token;
const char* str = input.str().c_str();
if (strcasecmp(str, NULL_VALUE) == 0) {
if (strcmp(str, NULL_VALUE) == 0) {
value = m_replacement; // replacement value
} else {
if (input.eof() || !getline(input, token, '-')) {