ER_IncompleteQuery,
//! Log file turned over.
ER_LogfileTurnedOver,
- //! Line begins with a space.
- ER_BeginWithSpace,
//! Excluded by exclude_string from sarg.conf.
ER_ExcludeString,
//! Unknown input log file format.
excluded_count[ER_LogfileTurnedOver]++;
continue;
}
- if(linebuf[0] == ' ') {
- excluded_count[ER_BeginWithSpace]++;
- continue;
- }
// exclude_string
if(ExcludeString[0] != '\0') {
DisplayExcludeCount(_("User name too long"),ER_UserNameTooLong);
DisplayExcludeCount(_("Squid logged an incomplete query received from the client"),ER_IncompleteQuery);
DisplayExcludeCount(_("Log file turned over"),ER_LogfileTurnedOver);
- DisplayExcludeCount(_("Line begins with a space"),ER_BeginWithSpace);
DisplayExcludeCount(_("Excluded by \"exclude_string\" in sarg.conf"),ER_ExcludeString);
DisplayExcludeCount(_("Unknown input log file format"),ER_UnknownFormat);
DisplayExcludeCount(_("Line ignored by the input log format"),ER_FormatData);