diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2021-11-24 15:24:17 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2021-11-24 15:24:17 +0000 |
commit | 0fc180c98d62fd9b9c7d168f02bd0440407fa8d4 (patch) | |
tree | e8bf3ea30175442690948fcff816750f66403dc0 /usr.sbin/rpki-client/Makefile | |
parent | 8ec6aa8130304b753e8a71d8311afb385d710b93 (diff) |
Move some functions from rrdp.c to rrdp_util.c and hex_decode to encoding.c.
This will make it easier to write a RRDP regress test.
OK job@ deraadt@
Diffstat (limited to 'usr.sbin/rpki-client/Makefile')
-rw-r--r-- | usr.sbin/rpki-client/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/rpki-client/Makefile b/usr.sbin/rpki-client/Makefile index be678c810d1..df64ea00d1f 100644 --- a/usr.sbin/rpki-client/Makefile +++ b/usr.sbin/rpki-client/Makefile @@ -1,11 +1,11 @@ -# $OpenBSD: Makefile,v 1.22 2021/10/25 14:08:34 claudio Exp $ +# $OpenBSD: Makefile,v 1.23 2021/11/24 15:24:16 claudio Exp $ PROG= rpki-client SRCS= as.c cert.c cms.c crl.c encoding.c gbr.c http.c io.c ip.c log.c \ main.c mft.c mkdir.c output.c output-bgpd.c output-bird.c \ output-csv.c output-json.c parser.c print.c repo.c roa.c rrdp.c \ - rrdp_delta.c rrdp_notification.c rrdp_snapshot.c rsync.c tal.c \ - validate.c x509.c + rrdp_delta.c rrdp_notification.c rrdp_snapshot.c rrdp_util.c \ + rsync.c tal.c validate.c x509.c MAN= rpki-client.8 LDADD+= -lexpat -ltls -lssl -lcrypto -lutil |