X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=util%2Fgip.c;fp=util%2Fgip.c;h=b1a5195383b4e57922beee50aa532c214cc53b13;hb=930f1b9b6effd9f1944a74487e835c721550be2f;hp=806549a8b6bbce3615bbe91619f0ad4cc1884747;hpb=d6e784b546a740266f0e3c06749444bf43cb2b48;p=egate.git diff --git a/util/gip.c b/util/gip.c index 806549a..b1a5195 100644 --- a/util/gip.c +++ b/util/gip.c @@ -45,6 +45,10 @@ * Europagate, 1995 * * $Log: gip.c,v $ + * Revision 1.9 1997/12/15 15:04:18 adam + * Changed name of member errno to errorno since some systems + * defines error as a preprocessor variable. + * * Revision 1.8 1995/05/22 09:03:41 adam * New argument, block, to cs_open. * @@ -100,7 +104,7 @@ GIP gip_initialize (const char *name) } strcpy (gip->name, name); gip->ret = mknod (gip->name, S_IFIFO|0666, 0); - gip->errno = errno; + gip->errorno = errno; gip->rfd = gip->wfd = -1; gw_log (GW_LOG_DEBUG, "gip", "Creating %s", gip->name); return gip; @@ -128,7 +132,7 @@ int gip_outfileno (GIP gip) int gip_errno (GIP gip) { - return gip->errno; + return gip->errorno; } int gip_read (GIP gip, char *buf, size_t count) @@ -143,7 +147,7 @@ int gip_read (GIP gip, char *buf, size_t count) break; if (errno != EINTR) { - gip->errno = errno; + gip->errorno = errno; return -1; } } @@ -164,7 +168,7 @@ int gip_write (GIP gip, const char *buf, size_t count) break; if (errno != EINTR) { - gip->errno = errno; + gip->errorno = errno; return -1; } }