Deprecated log.h and created a new ylog.h
[yaz-moved-to-github.git] / src / odr_oct.c
index a4369fe..1ea7353 100644 (file)
@@ -2,13 +2,16 @@
  * Copyright (c) 1995-2004, Index Data
  * See the file LICENSE for details.
  *
- * $Id: odr_oct.c,v 1.3 2004-08-13 07:30:06 adam Exp $
+ * $Id: odr_oct.c,v 1.7 2004-11-18 15:18:13 heikki Exp $
+ */
+/**
+ * \file odr_oct.c
+ * \brief Implements ODR OCTET codec
  */
 #if HAVE_CONFIG_H
 #include <config.h>
 #endif
 
-#include <yaz/log.h>
 #include "odr-priv.h"
 
 /*
@@ -32,12 +35,11 @@ int odr_octetstring(ODR o, Odr_oct **p, int opt, const char *name)
        return odr_missing(o, opt, name);
     if (o->direction == ODR_PRINT)
     {
-        int i;
        odr_prname(o, name);
        odr_printf(o, "OCTETSTRING(len=%d) ", (*p)->len);
 
        o->op->stream_write(o, o->print, ODR_OCTETSTRING,
-                           (*p)->buf, (*p)->len);
+                           (char*) (*p)->buf, (*p)->len);
         odr_printf(o, "\n");
        return 1;
     }