diff options
Diffstat (limited to 'sys/netatm/uni/unisig_if.c')
-rw-r--r-- | sys/netatm/uni/unisig_if.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/netatm/uni/unisig_if.c b/sys/netatm/uni/unisig_if.c index 0401154..33bfb48 100644 --- a/sys/netatm/uni/unisig_if.c +++ b/sys/netatm/uni/unisig_if.c @@ -23,7 +23,7 @@ * Copies of this Software may be made, however, the above copyright * notice must be reproduced on all copies. * - * @(#) $Id: unisig_if.c,v 1.4 1998/12/04 22:54:53 archie Exp $ + * @(#) $Id: unisig_if.c,v 1.5 1998/12/11 21:47:46 phk Exp $ * */ @@ -47,7 +47,7 @@ #include <netatm/uni/unisig_msg.h> #ifndef lint -__RCSID("@(#) $Id: unisig_if.c,v 1.4 1998/12/04 22:54:53 archie Exp $"); +__RCSID("@(#) $Id: unisig_if.c,v 1.5 1998/12/11 21:47:46 phk Exp $"); #endif @@ -936,8 +936,8 @@ unisig_ioctl(code, data, arg1) /* * Copy the response into the user's buffer */ - if (err = copyout((caddr_t)&rsp, buf_addr, - sizeof(rsp))) + if ((err = copyout((caddr_t)&rsp, buf_addr, + sizeof(rsp))) != 0) break; buf_addr += sizeof(rsp); buf_len -= sizeof(rsp); |