Routine bend_deleterequest removed.
[idzebra-moved-to-github.git] / index / kcompare.c
index 64fcbfe..0f3e3b3 100644 (file)
@@ -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;