From b7ca672b4bfacb1897e1da99563397826a8ac50b Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Mon, 8 Jun 1998 15:26:06 +0000 Subject: [PATCH] Minor changes. --- index/kcompare.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/index/kcompare.c b/index/kcompare.c index 64fcbfe..0f3e3b3 100644 --- a/index/kcompare.c +++ b/index/kcompare.c @@ -4,7 +4,10 @@ * Sebastian Hammer, Adam Dickmeiss * * $Log: kcompare.c,v $ - * Revision 1.24 1998-06-08 14:43:12 adam + * Revision 1.25 1998-06-08 15:26:06 adam + * Minor changes. + * + * Revision 1.24 1998/06/08 14:43:12 adam * Added suport for EXPLAIN Proxy servers - added settings databasePath * and explainDatabase to facilitate this. Increased maximum number * of databases and attributes in one register. @@ -294,14 +297,12 @@ ISAMC_M key_isamc_m (Res res) int key_SU_code (int ch, char *out) { int i; - logf (LOG_LOG, "key_SU_code: %d", ch); for (i = 0; ch; i++) { if (ch > 63) out[i] = 128 + (ch & 63); else out[i] = 1 + ch; - logf (LOG_LOG, " %d", out[i]); ch = ch >> 6; } return i; -- 1.7.10.4