Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 637126
Collapse All | Expand All

(-)file_not_specified_in_diff (-3 / +3 lines)
Line  Link Here
0
-- a/src/include/scripting/sqplus/sqplus.h
0
++ b/src/include/scripting/sqplus/sqplus.h
Lines 154-163 Link Here
154
    return safeStringCopy(s,_s.s,MaxLength);
154
    return safeStringCopy(s,_s.s,MaxLength);
155
  }
155
  }
156
  bool operator == (const ScriptStringVar & _s) {
156
  bool operator == (const ScriptStringVar & _s) {
157
    return _strcmp(s,_s.s) == 0;
157
    return strcmp(s,_s.s) == 0;
158
  }
158
  }
159
  bool compareCaseInsensitive(const ScriptStringVar & _s) {
159
  bool compareCaseInsensitive(const ScriptStringVar & _s) {
160
    return _stricmp(s,_s.s) == 0;
160
    return strcasecmp(s,_s.s) == 0;
161
  }
161
  }
162
};
162
};

Return to bug 637126