From 7724096e65524efc2e44fd9287a680a2b8c4f34b Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Tue, 3 May 2005 13:57:44 +0000 Subject: [PATCH] Fixed broken trunc=103, due to missing break stmt in switch. --- index/zrpn.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/index/zrpn.c b/index/zrpn.c index 0e0a183..9ac93bf 100644 --- a/index/zrpn.c +++ b/index/zrpn.c @@ -1,4 +1,4 @@ -/* $Id: zrpn.c,v 1.186 2005-05-03 09:11:34 adam Exp $ +/* $Id: zrpn.c,v 1.187 2005-05-03 13:57:44 adam Exp $ Copyright (C) 1995-2005 Index Data ApS @@ -1237,6 +1237,7 @@ static ZEBRA_RES string_term(ZebraHandle zh, Z_AttributesPlusTerm *zapt, return ZEBRA_OK; } strcat(term_dict, ")"); + break; case 104: /* process # and ! in term */ term_dict[j++] = '('; if (!term_104(zh->reg->zebra_maps, reg_type, -- 1.7.10.4