dovecot-1.2-sieve: Fixed small bug in plugin support.
pigeonhole at rename-it.nl
pigeonhole at rename-it.nl
Mon Jan 18 01:53:04 EET 2010
details: http://hg.rename-it.nl/dovecot-1.2-sieve/rev/11283d5efe7b
changeset: 1213:11283d5efe7b
user: Stephan Bosch <stephan at rename-it.nl>
date: Mon Jan 18 00:51:46 2010 +0100
description:
Fixed small bug in plugin support.
diffstat:
src/lib-sieve/sieve-plugins.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diffs (12 lines):
diff -r b441bba7c02d -r 11283d5efe7b src/lib-sieve/sieve-plugins.c
--- a/src/lib-sieve/sieve-plugins.c Sun Jan 17 12:02:30 2010 +0100
+++ b/src/lib-sieve/sieve-plugins.c Mon Jan 18 00:51:46 2010 +0100
@@ -158,7 +158,7 @@
struct sieve_plugin *plugin_last;
plugin_last = svinst->plugins;
- while ( plugin_last != NULL )
+ while ( plugin_last->next != NULL )
plugin_last = plugin_last->next;
plugin_last->next = plugin;
More information about the dovecot-cvs
mailing list