From 7f6c5eb21eda00b5a27704e4be18ce250fcb3a1f Mon Sep 17 00:00:00 2001 From: lulf Date: Wed, 26 Nov 2008 19:27:51 +0000 Subject: - Fix a bug in csup where SKIP is not obeyed when sending collection information. --- contrib/csup/proto.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'contrib/csup') diff --git a/contrib/csup/proto.c b/contrib/csup/proto.c index 04d6256..421ccff 100644 --- a/contrib/csup/proto.c +++ b/contrib/csup/proto.c @@ -365,6 +365,8 @@ proto_xchgcoll(struct config *config) s = config->server; lprintf(2, "Exchanging collection information\n"); STAILQ_FOREACH(coll, &config->colls, co_next) { + if (coll->co_options & CO_SKIP) + continue; proto_printf(s, "COLL %s %s %o %d\n", coll->co_name, coll->co_release, coll->co_umask, coll->co_options); for (i = 0; i < pattlist_size(coll->co_accepts); i++) { -- cgit v1.1