From 379c900658e6bab826919e2cd0a3d9e74f6ad92f Mon Sep 17 00:00:00 2001 From: David Christensen Date: Tue, 29 Jul 2014 13:49:41 -0500 Subject: [PATCH] Fix add_customcols params parsing --- bucardo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bucardo b/bucardo index e22617948..28dd42511 100755 --- a/bucardo +++ b/bucardo @@ -3052,7 +3052,7 @@ sub add_customcols { usage_exit($doc_section) unless length $item_name && length $clause; ## Does this number or name exist? - my @candidate_goats = find_goat_by_item($item_name, @nouns); + my @candidate_goats = find_goat_by_item($item_name, \@nouns); if (! @candidate_goats) { print qq{Could not find a matching table for "$item_name"\n}; exit 1; -- 2.39.5