|
@@ -496,11 +496,13 @@ term_init (
|
|
|
} else fquri = (char *) data;
|
|
|
|
|
|
if (strpbrk (fquri, invalid_uri_chars) != NULL) {
|
|
|
- log_error (
|
|
|
- "Characters %s are not allowed. Got: %s\n",
|
|
|
+ log_warn (
|
|
|
+ "Characters %s are not valid in a URI. Got: %s\n",
|
|
|
invalid_uri_chars, fquri);
|
|
|
-
|
|
|
+#if 0
|
|
|
+ // TODO This causes W3C TTL test #29 to fail. Remove?
|
|
|
return LSUP_VALUE_ERR;
|
|
|
+#endif
|
|
|
}
|
|
|
|
|
|
// Capture interesting IRI parts.
|