Fixed bug #597: Support null missing key for sort. Reject type
[idzebra-moved-to-github.git] / index / retrieve.c
index 675f7e0..6492745 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: retrieve.c,v 1.39 2006-05-02 08:27:43 marc Exp $
+/* $Id: retrieve.c,v 1.41 2006-05-19 23:20:24 adam Exp $
    Copyright (C) 1995-2005
    Index Data ApS
 
@@ -153,9 +153,8 @@ int zebra_record_fetch (ZebraHandle zh, SYSNO sysno, int score,
                const char *string_index = 0;
                char dst_buf[IT_MAX_WORD];
                
-               zebraExplain_lookup_ord (zh->reg->zei, ord,
-                                        &index_type, &db,
-                                        &set, &use, &string_index);
+               zebraExplain_lookup_ord(zh->reg->zei, ord, &index_type, &db,
+                                       &string_index);
 
                if (string_index)
                    wrbuf_printf(wrbuf, "%s", string_index);
@@ -320,3 +319,11 @@ int zebra_record_fetch (ZebraHandle zh, SYSNO sysno, int score,
     *addinfo = retrieveCtrl.addinfo;
     return retrieveCtrl.diagnostic;
 }
+/*
+ * Local variables:
+ * c-basic-offset: 4
+ * indent-tabs-mode: nil
+ * End:
+ * vim: shiftwidth=4 tabstop=8 expandtab
+ */
+