diff options
author | job <job@cvs.openbsd.org> | 2020-03-06 17:42:46 +0000 |
---|---|---|
committer | job <job@cvs.openbsd.org> | 2020-03-06 17:42:46 +0000 |
commit | 8740d87304e330b7679e4c5ca26a23581040b9e4 (patch) | |
tree | 349f99fd9881871b1a29faa6028e419e8092bb78 /usr.sbin | |
parent | ead55ffd29acd40823342710ae6c6390dc7156fb (diff) |
Change default table name for BIRD to something that is more easily identifable as user provided
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/rpki-client/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/rpki-client/main.c b/usr.sbin/rpki-client/main.c index 06914bae0d4..bf18f7fd603 100644 --- a/usr.sbin/rpki-client/main.c +++ b/usr.sbin/rpki-client/main.c @@ -1,4 +1,4 @@ -/* $OpenBSD: main.c,v 1.58 2020/02/11 18:41:39 deraadt Exp $ */ +/* $OpenBSD: main.c,v 1.59 2020/03/06 17:42:45 job Exp $ */ /* * Copyright (c) 2019 Kristaps Dzonsons <kristaps@bsd.lv> * @@ -156,7 +156,7 @@ static void build_chain(const struct auth *, STACK_OF(X509) **); static void build_crls(const struct auth *, struct crl_tree *, STACK_OF(X509_CRL) **); -const char *bird_tablename = "roa"; +const char *bird_tablename = "ROAS"; int verbose; |