From e20025dcfa4ee7ae028ce75152ac909150a904de Mon Sep 17 00:00:00 2001
From: Stephan Bosch <stephan@rename-it.nl>
Date: Sun, 23 Jan 2011 13:44:13 +0100
Subject: [PATCH] Copy extension: previous change was incomplete and broken.

---
 src/lib-sieve/cmd-redirect.c          | 2 +-
 src/lib-sieve/plugins/copy/ext-copy.c | 4 +++-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/src/lib-sieve/cmd-redirect.c b/src/lib-sieve/cmd-redirect.c
index c848f8236..705f9f6df 100644
--- a/src/lib-sieve/cmd-redirect.c
+++ b/src/lib-sieve/cmd-redirect.c
@@ -179,7 +179,7 @@ static bool cmd_redirect_operation_dump
 	if ( sieve_action_opr_optional_dump(denv, address, NULL) != 0 )
 		return FALSE;
 
-	return sieve_opr_string_dump(denv, address, "reason");
+	return sieve_opr_string_dump(denv, address, "address");
 }
 
 /*
diff --git a/src/lib-sieve/plugins/copy/ext-copy.c b/src/lib-sieve/plugins/copy/ext-copy.c
index f45dd84f5..08f86c1d3 100644
--- a/src/lib-sieve/plugins/copy/ext-copy.c
+++ b/src/lib-sieve/plugins/copy/ext-copy.c
@@ -22,6 +22,8 @@
 #include "sieve-interpreter.h"
 #include "sieve-result.h"
 
+#include "sieve-ext-copy.h"
+
 /*
  * Forward declarations
  */
@@ -123,7 +125,7 @@ void sieve_ext_copy_register_tag
 (struct sieve_validator *valdtr, const struct sieve_extension *copy_ext,
 	const char *command)
 {
-	if ( sieve_validator_extension_loaded(valdr, copy_ext) ) {
+	if ( sieve_validator_extension_loaded(valdtr, copy_ext) ) {
 		sieve_validator_register_external_tag
 			(valdtr, command, copy_ext, &copy_tag, SIEVE_OPT_SIDE_EFFECT);
 	}
-- 
GitLab