dovecot-2.0: master: Don't include disabled unix/fifo_listeners ...
dovecot at dovecot.org
dovecot at dovecot.org
Thu May 13 19:26:11 EEST 2010
details: http://hg.dovecot.org/dovecot-2.0/rev/706e411a134d
changeset: 11307:706e411a134d
user: Timo Sirainen <tss at iki.fi>
date: Thu May 13 18:26:08 2010 +0200
description:
master: Don't include disabled unix/fifo_listeners in duplicate checks.
diffstat:
src/master/master-settings.c | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diffs (13 lines):
diff -r de9259065123 -r 706e411a134d src/master/master-settings.c
--- a/src/master/master-settings.c Thu May 13 13:09:02 2010 +0200
+++ b/src/master/master-settings.c Thu May 13 18:26:08 2010 +0200
@@ -270,7 +270,8 @@
i_warning("You should remove base_dir prefix from "
"unix_listener: %s", set->path);
}
- array_append(all_listeners, &set->path, 1);
+ if (set->mode != 0)
+ array_append(all_listeners, &set->path, 1);
}
}
More information about the dovecot-cvs
mailing list