Function zget_presentRequest fills resultSetId with "default" instead
[yaz-moved-to-github.git] / asn / zget.c
index fedf020..c48f9e5 100644 (file)
@@ -1,10 +1,18 @@
 /*
- * Copyright (c) 1995, Index Data.
+ * Copyright (c) 1995-1998, Index Data.
  * See the file LICENSE for details.
  * Sebastian Hammer, Adam Dickmeiss
  *
  * $Log: zget.c,v $
- * Revision 1.11  1997-05-02 08:39:10  quinn
+ * Revision 1.13  1998-01-29 13:13:39  adam
+ * Function zget_presentRequest fills resultSetId with "default" instead
+ * of "Default".
+ *
+ * Revision 1.12  1997/10/29 12:00:37  adam
+ * Routine zget_SearchRequest fills resultSetName member with "default"
+ * instead of "Default".
+ *
+ * Revision 1.11  1997/05/02 08:39:10  quinn
  * New PDUs added, thanks to Ronald van der Meer
  *
  * Revision 1.10  1996/01/02 08:57:23  quinn
@@ -104,7 +112,7 @@ Z_SearchRequest *zget_SearchRequest(ODR o)
     *r->mediumSetPresentNumber = 0;
     r->replaceIndicator = odr_malloc(o, sizeof(bool_t));
     *r->replaceIndicator = 1;
-    r->resultSetName = "Default";
+    r->resultSetName = "default";
     r->num_databaseNames = 0;
     r->databaseNames = 0;
     r->smallSetElementSetNames = 0;
@@ -146,7 +154,7 @@ Z_PresentRequest *zget_PresentRequest(ODR o)
     Z_PresentRequest *r = odr_malloc(o, sizeof(*r));
 
     r->referenceId = 0;
-    r->resultSetId = "Default";
+    r->resultSetId = "default";
     r->resultSetStartPoint = odr_malloc(o, sizeof(int));
     *r->resultSetStartPoint = 1;
     r->numberOfRecordsRequested = odr_malloc(o, sizeof(int));