From 5d38e5d88d423a7a84f714841cc161829f236b13 Mon Sep 17 00:00:00 2001 From: Omar Polo Date: Fri, 4 Aug 2023 10:02:18 +0000 Subject: [PATCH] titan: clean up IRI/URI/URL mess; it's a IRI what we parse --- titan.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/titan.c b/titan.c index a1b3f7e..df677b4 100644 --- a/titan.c +++ b/titan.c @@ -279,15 +279,15 @@ main(int argc, char **argv) if (fstat(fileno(in), &sb) == -1) err(1, "fstat"); - /* prepare the URL */ + /* prepare the IRI */ if (strlcpy(iribuf, argv[0], sizeof(iribuf)) >= sizeof(iribuf)) - errx(1, "URL too long"); + errx(1, "IRI too long"); if (!parse_iri(iribuf, &iri, &errstr)) errx(1, "invalid IRI: %s", errstr); if (strcmp(iri.schema, "titan") != 0) - errx(1, "not a titan:// URI"); + errx(1, "not a titan:// IRI"); if (token && mime) { if (asprintf(&path, "%s;size=%lld;token=%s;mime=%s", iri.path, @@ -310,7 +310,7 @@ main(int argc, char **argv) iri.path = path; if (!serialize_iri(&iri, reqbuf, sizeof(reqbuf)) || strlcat(reqbuf, "\r\n", sizeof(reqbuf)) >= sizeof(reqbuf)) - errx(1, "URI too long"); + errx(1, "IRI too long"); if ((config = tls_config_new()) == NULL) err(1, "tls_config_new");