*** empty log message ***
[egate.git] / zlayer / zaccess-yaz.c
index 04453b7..2fa8783 100644 (file)
@@ -4,7 +4,13 @@
  * Z39.50 API for the Email gateway - YAZ version
  *
  * $Log: zaccess-yaz.c,v $
- * Revision 1.6  1995/04/21 12:58:36  adam
+ * Revision 1.8  1995/04/28 14:18:38  quinn
+ * *** empty log message ***
+ *
+ * Revision 1.7  1995/04/21  16:29:32  quinn
+ * Fixed bugs.
+ *
+ * Revision 1.6  1995/04/21  12:58:36  adam
  * Bug fix.
  *
  * Revision 1.5  1995/04/20  15:25:32  quinn
@@ -141,7 +147,6 @@ static int send_initreq(struct zass *p, char *auth)
     }
     else
        init.idAuthentication = 0;
-    init.idAuthentication = 0;
     init.implementationId = ZASS_ID;
     sprintf(name, "%s (YAZ protocol layer)", ZASS_NAME);
     init.implementationName = name;
@@ -298,7 +303,7 @@ static Z_RPNStructure *rpn2rpn(ODR o, struct ccl_rpn_node *q)
            r->u.simple = odr_malloc(o, sizeof(Z_Operand));
            r->u.simple->which = Z_Operand_resultSetId;
            r->u.simple->u.resultSetId = odr_malloc(o, len =
-               strlen(q->u.setname)+1);
+               strlen(q->u.setname) + 1);
            memcpy(r->u.simple->u.resultSetId, q->u.setname, len);
            return r;
        case CCL_RPN_AND: case CCL_RPN_OR: case CCL_RPN_NOT: