Skip to content
Snippets Groups Projects
  • Bruce Momjian's avatar
    01cc3440
    Change the line: · 01cc3440
    Bruce Momjian authored
     return ((c == 't') || (c == 'T'));
    int the getBoolean function on line 184:ish to:
     return ((c == 't') || (c == 'T') (c == '1'));
    
    Hunter Hillegas
    01cc3440
    History
    Change the line:
    Bruce Momjian authored
     return ((c == 't') || (c == 'T'));
    int the getBoolean function on line 184:ish to:
     return ((c == 't') || (c == 'T') (c == '1'));
    
    Hunter Hillegas