X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fzgdu.c;h=d7d76df9189aa762dd3b2e30090fa1d93d0d82ac;hb=f5234a7d67df11584a2f29b35d999a603ab9cc80;hp=0469d5f250b00e1997303c48908a8c284f3fd6f3;hpb=a23ee5449742beee9dc2ebf56c70f065d6239df3;p=yaz-moved-to-github.git diff --git a/src/zgdu.c b/src/zgdu.c index 0469d5f..d7d76df 100644 --- a/src/zgdu.c +++ b/src/zgdu.c @@ -2,7 +2,12 @@ * Copyright (c) 2002-2004, Index Data. * See the file LICENSE for details. * - * $Id: zgdu.c,v 1.9 2004-02-25 12:59:56 adam Exp $ + * $Id: zgdu.c,v 1.11 2004-10-15 00:19:01 adam Exp $ + */ + +/** + * \file zgdu.c + * \brief Implements HTTP and Z39.50 encoding and decoding. */ #include @@ -380,9 +385,9 @@ int z_GDU (ODR o, Z_GDU **p, int opt, const char *name) (*p)->u.HTTP_Response->content_len); if (o->direction == ODR_PRINT) { - fprintf(o->print, "-- HTTP response:\n%.*s\n", o->top - top0, - o->buf + top0); - fprintf(o->print, "-- \n"); + odr_printf(o, "-- HTTP response:\n%.*s\n", o->top - top0, + o->buf + top0); + odr_printf(o, "-- \n"); } break; case Z_GDU_HTTP_Request: @@ -418,9 +423,9 @@ int z_GDU (ODR o, Z_GDU **p, int opt, const char *name) (*p)->u.HTTP_Request->content_len); if (o->direction == ODR_PRINT) { - fprintf(o->print, "-- HTTP request:\n%.*s\n", o->top - top0, + odr_printf(o, "-- HTTP request:\n%.*s\n", o->top - top0, o->buf + top0); - fprintf(o->print, "-- \n"); + odr_printf(o, "-- \n"); } break; case Z_GDU_Z3950: