View | Details | Raw Unified
Collapse All | Expand All

(-) ./modules/filter/email.cpp (-1 / +2 lines)
 Lines 33-39    Link Here 
        memset(data, 0, sizeof(bool)*256);
        memset(data, 0, sizeof(bool)*256);
	return no_err;
	return no_err;
      }
      }
      bool have(char c) {
      bool have(FilterChar::Chr c) {
	if (c > 255) return false;
        return data[static_cast<unsigned char>(c)];
        return data[static_cast<unsigned char>(c)];
      }
      }
      QuoteChars() {clear();}
      QuoteChars() {clear();}