1
0
mirror of https://github.com/openbsd/src.git synced 2025-01-10 06:47:55 -08:00

Unbreak regress after yesterdays churn.

Friendly reminder from anton@
This commit is contained in:
claudio 2023-04-27 06:11:43 +00:00
parent a6c219455f
commit d6d042a578
12 changed files with 78 additions and 12 deletions

View 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;
}

View 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);
}

View 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);
}

View 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);
}

View 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);
}

View 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);
}

View 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);
}

View 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);
}

View 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);
}

View 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);
}

View 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);
}

View 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);
}