From 16dd802c2e1e7eb1fc0dd982b2cb84e15adfa141 Mon Sep 17 00:00:00 2001 From: Philip Homburg Date: Tue, 31 May 2022 15:06:29 +0200 Subject: [PATCH] Add url 'master' to allow notify list --- services/authzone.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/authzone.c b/services/authzone.c index a66ffa1dc..ba3335326 100644 --- a/services/authzone.c +++ b/services/authzone.c @@ -3967,7 +3967,7 @@ probe_copy_masters_for_allow_notify(struct auth_xfer* xfr) struct auth_master* list = NULL, *last = NULL; struct auth_master* p; /* build up new list with copies */ - for(p = xfr->task_probe->masters; p; p=p->next) { + for(p = xfr->task_transfer->masters; p; p=p->next) { struct auth_master* m = auth_master_copy(p); if(!m) { auth_free_masters(list);