diff options
author | Job Snijders <job@cvs.openbsd.org> | 2022-09-03 15:13:45 +0000 |
---|---|---|
committer | Job Snijders <job@cvs.openbsd.org> | 2022-09-03 15:13:45 +0000 |
commit | ed94f53cd8751f0185d3473c6fcbb409a1f3a703 (patch) | |
tree | 7c067d44d7ccbe20a184d922ef19bd1271b6e4d4 | |
parent | a6548b8b0db793481b4953d648dac0a81666d3f4 (diff) |
Clarify warning
-rw-r--r-- | usr.sbin/rpki-client/tal.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/rpki-client/tal.c b/usr.sbin/rpki-client/tal.c index aad992c91ab..b9a25cd09e1 100644 --- a/usr.sbin/rpki-client/tal.c +++ b/usr.sbin/rpki-client/tal.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tal.c,v 1.35 2022/05/15 16:43:35 tb Exp $ */ +/* $OpenBSD: tal.c,v 1.36 2022/09/03 15:13:44 job Exp $ */ /* * Copyright (c) 2019 Kristaps Dzonsons <kristaps@bsd.lv> * @@ -119,7 +119,7 @@ tal_parse_buffer(const char *fn, char *buf, size_t len) } if (tal->urisz == 0) { - warnx("%s: no URIs in manifest part", fn); + warnx("%s: no URIs in TAL file", fn); goto out; } |