Commit 750d258037baa24f21b20a7866e773127c683f17

If I make an enum, I should use it like one.

Commit diff

logfiles.cpp

 
6969}
7070
7171/* Returns a value from logTypes */
72static int identifyLog(const char *line) {
73 int rv=UNKNOWN;
72static enum logType identifyLog(const char *line) {
73 enum logType rv=UNKNOWN;
7474 assert(line != NULL);
7575
7676 if(boost::regex_search(line, amazon_s3_regex)) {
toggle raw diff