From: Sebastian Hammer Date: Tue, 7 Mar 1995 10:21:31 +0000 (+0000) Subject: odr_errno-->odr_error X-Git-Tag: YAZ.1.8~1150 X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=commitdiff_plain;h=a372d45e267573f7c0f53759de3db81ec1237383 odr_errno-->odr_error --- diff --git a/odr/odr.c b/odr/odr.c index e486507..6129857 100644 --- a/odr/odr.c +++ b/odr/odr.c @@ -4,7 +4,10 @@ * Sebastian Hammer, Adam Dickmeiss * * $Log: odr.c,v $ - * Revision 1.2 1995-03-07 10:19:05 quinn + * Revision 1.3 1995-03-07 10:21:31 quinn + * odr_errno-->odr_error + * + * Revision 1.2 1995/03/07 10:19:05 quinn * Addded some method functions to the ODR type. * * Revision 1.1 1995/03/07 09:23:15 quinn @@ -34,7 +37,7 @@ void odr_perror(ODR o, char *message) fprintf(stderr, "%s: %s\n", message, odr_errlist[o->error]); } -int odr_errno(ODR o) +int odr_error(ODR o) { return o->error; }