titan: rename parse_err to errstr

This commit is contained in:
Omar Polo 2023-08-04 09:53:18 +00:00
parent 1b1a6fb7ee
commit 5905156665
1 changed files with 3 additions and 3 deletions

View File

@ -233,7 +233,7 @@ main(int argc, char **argv)
struct iri iri;
FILE *in;
const char *cert = NULL, *key = NULL, *mime = NULL, *token = NULL;
const char *parse_err;
const char *errstr;
char iribuf[1025];
char reqbuf[1025];
char resbuf[1025];
@ -283,8 +283,8 @@ main(int argc, char **argv)
if (strlcpy(iribuf, argv[0], sizeof(iribuf)) >= sizeof(iribuf))
errx(1, "URL too long");
if (!parse_iri(iribuf, &iri, &parse_err))
errx(1, "invalid IRI: %s", parse_err);
if (!parse_iri(iribuf, &iri, &errstr))
errx(1, "invalid IRI: %s", errstr);
if (token && mime) {
if (asprintf(&path, "%s;size=%lld;token=%s;mime=%s", iri.path,