Unbreak regress after yesterdays churn.
authorclaudio <claudio@openbsd.org>
Thu, 27 Apr 2023 06:11:43 +0000 (06:11 +0000)
committerclaudio <claudio@openbsd.org>
Thu, 27 Apr 2023 06:11:43 +0000 (06:11 +0000)
Friendly reminder from anton@

12 files changed:
regress/usr.sbin/rpki-client/repo-dummy.c
regress/usr.sbin/rpki-client/test-aspa.c
regress/usr.sbin/rpki-client/test-cert.c
regress/usr.sbin/rpki-client/test-gbr.c
regress/usr.sbin/rpki-client/test-geofeed.c
regress/usr.sbin/rpki-client/test-ip.c
regress/usr.sbin/rpki-client/test-mft.c
regress/usr.sbin/rpki-client/test-roa.c
regress/usr.sbin/rpki-client/test-rrdp.c
regress/usr.sbin/rpki-client/test-rsc.c
regress/usr.sbin/rpki-client/test-tak.c
regress/usr.sbin/rpki-client/test-tal.c

index 2147f6c..2ae5a66 100644 (file)
@@ -6,7 +6,7 @@
 #include "extern.h"
 
 void
-repo_stat_inc(struct repo *repo, enum rtype type, enum stype subtype)
+repo_stat_inc(struct repo *repo, int tal, enum rtype type, enum stype subtype)
 {
        return;
 }
index aa02db5..9aef546 100644 (file)
@@ -1,4 +1,4 @@
-/*     $Id: test-aspa.c,v 1.2 2022/11/05 10:32:51 job Exp $ */
+/*     $Id: test-aspa.c,v 1.3 2023/04/27 06:11:43 claudio Exp $ */
 /*
  * Copyright (c) 2022 Job Snijders <job@fastly.com>
  * Copyright (c) 2019 Kristaps Dzonsons <kristaps@bsd.lv>
@@ -96,3 +96,9 @@ main(int argc, char *argv[])
        printf("OK\n");
        return 0;
 }
+
+time_t
+get_current_time(void)
+{
+       return time(NULL);
+}
index d06ddc0..110565c 100644 (file)
@@ -1,4 +1,4 @@
-/*     $Id: test-cert.c,v 1.20 2022/11/05 10:32:51 job Exp $ */
+/*     $Id: test-cert.c,v 1.21 2023/04/27 06:11:43 claudio Exp $ */
 /*
  * Copyright (c) 2019 Kristaps Dzonsons <kristaps@bsd.lv>
  *
@@ -125,3 +125,9 @@ main(int argc, char *argv[])
        printf("OK\n");
        return 0;
 }
+
+time_t
+get_current_time(void)
+{
+       return time(NULL);
+}
index d06b581..0238627 100644 (file)
@@ -1,4 +1,4 @@
-/*     $Id: test-gbr.c,v 1.12 2022/11/05 10:32:51 job Exp $ */
+/*     $Id: test-gbr.c,v 1.13 2023/04/27 06:11:43 claudio Exp $ */
 /*
  * Copyright (c) 2019 Kristaps Dzonsons <kristaps@bsd.lv>
  *
@@ -96,3 +96,9 @@ main(int argc, char *argv[])
        printf("OK\n");
        return 0;
 }
+
+time_t
+get_current_time(void)
+{
+       return time(NULL);
+}
index 54523f2..aff4685 100644 (file)
@@ -1,4 +1,4 @@
-/*     $Id: test-geofeed.c,v 1.1 2022/11/26 12:34:31 tb Exp $ */
+/*     $Id: test-geofeed.c,v 1.2 2023/04/27 06:11:43 claudio Exp $ */
 /*
  * Copyright (c) 2019 Kristaps Dzonsons <kristaps@bsd.lv>
  *
@@ -96,3 +96,9 @@ main(int argc, char *argv[])
        printf("OK\n");
        return 0;
 }
+
+time_t
+get_current_time(void)
+{
+       return time(NULL);
+}
index d04451f..7fe2207 100644 (file)
@@ -1,4 +1,4 @@
-/*     $Id: test-ip.c,v 1.6 2022/11/05 10:32:51 job Exp $ */
+/*     $Id: test-ip.c,v 1.7 2023/04/27 06:11:43 claudio Exp $ */
 /*
  * Copyright (c) 2019 Kristaps Dzonsons <kristaps@bsd.lv>
  *
@@ -128,3 +128,9 @@ main(int argc, char *argv[])
        printf("OK\n");
        return 0;
 }
+
+time_t
+get_current_time(void)
+{
+       return time(NULL);
+}
index 1d25432..8ceb2e2 100644 (file)
@@ -1,4 +1,4 @@
-/*     $Id: test-mft.c,v 1.22 2022/08/26 06:32:03 tb Exp $ */
+/*     $Id: test-mft.c,v 1.23 2023/04/27 06:11:43 claudio Exp $ */
 /*
  * Copyright (c) 2019 Kristaps Dzonsons <kristaps@bsd.lv>
  *
@@ -97,3 +97,9 @@ main(int argc, char *argv[])
        printf("OK\n");
        return 0;
 }
+
+time_t
+get_current_time(void)
+{
+       return time(NULL);
+}
index 30d5994..a6927ac 100644 (file)
@@ -1,4 +1,4 @@
-/*     $Id: test-roa.c,v 1.20 2022/11/05 10:32:51 job Exp $ */
+/*     $Id: test-roa.c,v 1.21 2023/04/27 06:11:43 claudio Exp $ */
 /*
  * Copyright (c) 2019 Kristaps Dzonsons <kristaps@bsd.lv>
  *
@@ -95,3 +95,9 @@ main(int argc, char *argv[])
        printf("OK\n");
        return 0;
 }
+
+time_t
+get_current_time(void)
+{
+       return time(NULL);
+}
index e8b6815..f269452 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: test-rrdp.c,v 1.3 2022/04/20 17:37:53 tb Exp $ */
+/*     $OpenBSD: test-rrdp.c,v 1.4 2023/04/27 06:11:43 claudio Exp $ */
 /*
  * Copyright (c) 2020 Nils Fisher <nils_fisher@hotmail.com>
  * Copyright (c) 2021 Claudio Jeker <claudio@openbsd.org>
@@ -338,3 +338,9 @@ usage:
            "-d | -n | -s\n", "test-rrdp");
        exit(1);
 }
+
+time_t
+get_current_time(void)
+{
+       return time(NULL);
+}
index b90ca56..1bd61cd 100644 (file)
@@ -1,4 +1,4 @@
-/*     $Id: test-rsc.c,v 1.5 2022/11/05 10:32:51 job Exp $ */
+/*     $Id: test-rsc.c,v 1.6 2023/04/27 06:11:43 claudio Exp $ */
 /*
  * Copyright (c) 2019 Kristaps Dzonsons <kristaps@bsd.lv>
  *
@@ -98,3 +98,9 @@ main(int argc, char *argv[])
        printf("OK\n");
        return 0;
 }
+
+time_t
+get_current_time(void)
+{
+       return time(NULL);
+}
index 71ac50f..c922901 100644 (file)
@@ -1,4 +1,4 @@
-/*     $Id: test-tak.c,v 1.2 2022/11/05 10:32:51 job Exp $ */
+/*     $Id: test-tak.c,v 1.3 2023/04/27 06:11:43 claudio Exp $ */
 /*
  * Copyright (c) 2022 Job Snijders <job@fastly.com>
  * Copyright (c) 2019 Kristaps Dzonsons <kristaps@bsd.lv>
@@ -96,3 +96,9 @@ main(int argc, char *argv[])
        printf("OK\n");
        return 0;
 }
+
+time_t
+get_current_time(void)
+{
+       return time(NULL);
+}
index 587c588..de59cf2 100644 (file)
@@ -1,4 +1,4 @@
-/*     $Id: test-tal.c,v 1.9 2022/04/20 17:26:53 tb Exp $ */
+/*     $Id: test-tal.c,v 1.10 2023/04/27 06:11:43 claudio Exp $ */
 /*
  * Copyright (c) 2019 Kristaps Dzonsons <kristaps@bsd.lv>
  *
@@ -80,3 +80,9 @@ main(int argc, char *argv[])
        printf("OK\n");
        return 0;
 }
+
+time_t
+get_current_time(void)
+{
+       return time(NULL);
+}