From feeb3026b5c7908c99f6347983f65e43658d68f8 Mon Sep 17 00:00:00 2001 From: Colin Campbell Date: Fri, 1 May 2009 09:32:27 +0100 Subject: [PATCH] Correct comparison which was using an octal number Signed-off-by: Galen Charlton Signed-off-by: Henri-Damien LAURENT --- authorities/authorities.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/authorities/authorities.pl b/authorities/authorities.pl index a0ce203702..2e9f2da059 100755 --- a/authorities/authorities.pl +++ b/authorities/authorities.pl @@ -431,7 +431,7 @@ sub build_tabs ($$$$$) { fixedfield => ($tag < 10)?(1):(0), random => CreateKey, ); - if ($tag >= 010){ # no indicator for theses tag + if ($tag >= 10){ # no indicator for theses tag $tag_data{indicator1} = format_indicator($field->indicator(1)), $tag_data{indicator2} = format_indicator($field->indicator(2)), } -- 2.20.1