Any tab encountered in a field of the input log file will send sarg off track
as it uses a tab to delimit columns in its temporary files.
To prevent this problem, the URL and the HTML code found in the input log file
are processed to replace any tab character by a single space.
for (x=3 ; str[x] ; x++) str[x-2]=str[x];
}
#endif
+ // replace any tab by a single space
+ for (str=full_url ; *str ; str++)
+ if (*str=='\t') *str=' ';
+ for (str=code ; *str ; str++)
+ if (*str=='\t') *str=' ';
urly=full_url;