- Fix a bug in csup where SKIP is not obeyed when sending collection

information.
This commit is contained in:
Ulf Lilleengen 2008-11-26 19:27:51 +00:00
parent 8658b90899
commit ab0135bc74

View File

@ -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++) {