From 17fb9e37097833d3a6bfafc00d376acefc36f64c Mon Sep 17 00:00:00 2001 From: Miroslav Lichvar Date: Wed, 20 May 2020 17:35:08 +0200 Subject: [PATCH] stubs: add NSR_GetAuthReport() Fixes: 79c7384e5e47 ("cmdmon: add authdata command") --- stubs.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/stubs.c b/stubs.c index fe1cd50..a337307 100644 --- a/stubs.c +++ b/stubs.c @@ -319,6 +319,12 @@ NSR_ReportSource(RPT_SourceReport *report, struct timespec *now) memset(report, 0, sizeof (*report)); } +int +NSR_GetAuthReport(IPAddr *address, RPT_AuthReport *report) +{ + return 0; +} + int NSR_GetNTPReport(RPT_NTPReport *report) {