From: claudio Date: Thu, 18 Mar 2021 14:03:42 +0000 (+0000) Subject: Since the entity queues are per repo there is no need to store the repo id X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=8a3c435df62c29ca89ecea0660d722821c928d79;p=openbsd Since the entity queues are per repo there is no need to store the repo id anymore. OK job@ tb@ --- diff --git a/usr.sbin/rpki-client/extern.h b/usr.sbin/rpki-client/extern.h index 002c62c1cc1..e6d6305a04c 100644 --- a/usr.sbin/rpki-client/extern.h +++ b/usr.sbin/rpki-client/extern.h @@ -1,4 +1,4 @@ -/* $OpenBSD: extern.h,v 1.53 2021/03/05 17:15:19 claudio Exp $ */ +/* $OpenBSD: extern.h,v 1.54 2021/03/18 14:03:42 claudio Exp $ */ /* * Copyright (c) 2019 Kristaps Dzonsons * @@ -271,7 +271,6 @@ enum rtype { struct entity { enum rtype type; /* type of entity (not RTYPE_EOF) */ char *file; /* local path to file */ - ssize_t repo; /* repo index or <0 if w/o repo */ int has_pkey; /* whether pkey/sz is specified */ unsigned char *pkey; /* public key (optional) */ size_t pkeysz; /* public key length (optional) */