Fix error description slightly since we're using the same error code for disallowed by robots.txt & meta tag

This commit is contained in:
Ai Lin Chia
2017-11-22 10:35:32 +01:00
parent 2436f36ce9
commit b6d69fc3ab

@ -157,11 +157,11 @@ const char *mstrerror ( int errnum ) {
case EDOCDUPWWW :
return "Doc is dup of a www url";
case EDOCDISALLOWED :
return "robots.txt disallows this url";
return "robots.txt/meta tag disallows this url";
case EDOCDISALLOWEDHTTPSTATUS:
return "Disallowed due to robots.txt HTTP status";
case EDOCDISALLOWEDROOT:
return "robots.txt disallows this root url";
return "robots.txt/meta tag disallows this root url";
case EDOCDISALLOWEDERROR:
return "Disallowed due to robots.txt download error";
case ETOOMANYFILES :