Minor fix.
[yaz-moved-to-github.git] / odr / odr_choice.c
index 59beae4..f0a8f9a 100644 (file)
@@ -4,7 +4,20 @@
  * Sebastian Hammer, Adam Dickmeiss
  *
  * $Log: odr_choice.c,v $
- * Revision 1.11  1995-09-29 17:12:23  quinn
+ * Revision 1.15  1998-02-11 11:53:34  adam
+ * Changed code so that it compiles as C++.
+ *
+ * Revision 1.14  1997/05/14 06:53:57  adam
+ * C++ support.
+ *
+ * Revision 1.13  1997/04/30 08:52:10  quinn
+ * Null
+ *
+ * Revision 1.12  1996/10/08  12:58:17  adam
+ * New ODR function, odr_choice_enable_bias, to control behaviour of
+ * odr_choice_bias.
+ *
+ * Revision 1.11  1995/09/29  17:12:23  quinn
  * Smallish
  *
  * Revision 1.10  1995/09/27  15:02:58  quinn
@@ -43,7 +56,7 @@
 
 int odr_choice(ODR o, Odr_arm arm[], void *p, void *whichp)
 {
-    int i, cl = -1, tg, cn, *which = whichp, bias = o->choice_bias;
+    int i, cl = -1, tg, cn, *which = (int *)whichp, bias = o->choice_bias;
 
     if (o->error)
        return 0;
@@ -72,26 +85,26 @@ int odr_choice(ODR o, Odr_arm arm[], void *p, void *whichp)
            }
            else if (o->direction != ODR_DECODE)
            {
-               cl = arm[i].class;
+               cl = arm[i].zclass;
                tg = arm[i].tag;
            }
-           if (tg == arm[i].tag && cl == arm[i].class)
+           if (tg == arm[i].tag && cl == arm[i].zclass)
            {
                if (arm[i].tagmode == ODR_IMPLICIT)
                {
                    odr_implicit_settag(o, cl, tg);
-                   return (*arm[i].fun)(o, p, 0);
+                   return (*arm[i].fun)(o, (char **)p, 0);
                }
                /* explicit */
                if (!odr_constructed_begin(o, p, cl, tg))
                    return 0;
-               return (*arm[i].fun)(o, p, 0) &&
+               return (*arm[i].fun)(o, (char **)p, 0) &&
                    odr_constructed_end(o);
            }
        }
        else  /* no tagging. Have to poll type */
        {
-           if ((*arm[i].fun)(o, p, 1) && *(char**)p)
+           if ((*arm[i].fun)(o, (char **)p, 1) && *(char**)p)
                return 1;
        }
     }
@@ -102,5 +115,11 @@ int odr_choice(ODR o, Odr_arm arm[], void *p, void *whichp)
 
 void odr_choice_bias(ODR o, int what)
 {
-    o->choice_bias = what;
+    if (o->enable_bias)
+        o->choice_bias = what;
+}
+
+void odr_choice_enable_bias (ODR o, int mode)
+{
+    o->enable_bias = mode;
 }