summaryrefslogtreecommitdiff
path: root/server/subscr.c
diff options
context:
space:
mode:
authorGravatar John Kohl <jtkohl@mit.edu>1988-10-20 06:32:32 +0000
committerGravatar John Kohl <jtkohl@mit.edu>1988-10-20 06:32:32 +0000
commitfb6d873592de85f7eb943de8d54f304800a69212 (patch)
treec65d0f8621affcbecac6d9bdfaafbfcc99d69b2a /server/subscr.c
parent057b477fcfd65cb8f855e39e309d8b4ea8c9c9ce (diff)
don't check subscription sender when dumping
Diffstat (limited to 'server/subscr.c')
-rw-r--r--server/subscr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/server/subscr.c b/server/subscr.c
index 6ac571a..f73aa4b 100644
--- a/server/subscr.c
+++ b/server/subscr.c
@@ -143,8 +143,8 @@ ZNotice_t *notice;
subs = subs->q_forw) {
/* for each new subscription */
- if (*(subs->zst_recipient) && strcmp(subs->zst_recipient,
- notice->z_sender)) {
+ if (!bdumping && *(subs->zst_recipient) &&
+ strcmp(subs->zst_recipient, notice->z_sender)) {
syslog(LOG_WARNING, "subscr unauth to rcpt %s by %s",
subs->zst_recipient,
notice->z_sender);