diff options
author | Job Snijders <job@cvs.openbsd.org> | 2024-04-12 11:50:30 +0000 |
---|---|---|
committer | Job Snijders <job@cvs.openbsd.org> | 2024-04-12 11:50:30 +0000 |
commit | 5ee62aad71cbc08d5c7695761254c5ff768ab7d4 (patch) | |
tree | e2d500b4544c2c7089061701d50067f8dc351258 /usr.sbin/rpki-client | |
parent | 4ed36cdae3df3442258dfe7dea154007f580a53f (diff) |
Fix warning about delta element issues in the Update Notification File XML
OK tb@
Diffstat (limited to 'usr.sbin/rpki-client')
-rw-r--r-- | usr.sbin/rpki-client/rrdp_notification.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/rpki-client/rrdp_notification.c b/usr.sbin/rpki-client/rrdp_notification.c index 310ba99ade2..1d3e149a4e5 100644 --- a/usr.sbin/rpki-client/rrdp_notification.c +++ b/usr.sbin/rpki-client/rrdp_notification.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rrdp_notification.c,v 1.20 2024/03/22 03:38:12 job Exp $ */ +/* $OpenBSD: rrdp_notification.c,v 1.21 2024/04/12 11:50:29 job Exp $ */ /* * Copyright (c) 2020 Nils Fisher <nils_fisher@hotmail.com> * Copyright (c) 2021 Claudio Jeker <claudio@openbsd.org> @@ -294,7 +294,7 @@ start_delta_elem(struct notification_xml *nxml, const char **attr) continue; } PARSE_FAIL(p, "parse failed - non conforming " - "attribute '%s' found in snapshot elem", attr[i]); + "attribute '%s' found in delta elem", attr[i]); } /* Only add to the list if we are relevant */ if (hasUri != 1 || hasHash != 1 || delta_serial == 0) |