diff options
author | 1996-01-15 01:06:44 +0000 | |
---|---|---|
committer | 1996-01-15 01:06:44 +0000 | |
commit | 6e48009803030077069532d9e43fb73898075fe2 (patch) | |
tree | db1b888c772ceb4d519f727d6597dbdecf1c7491 | |
parent | from netbsd: (diff) | |
download | wireguard-openbsd-6e48009803030077069532d9e43fb73898075fe2.tar.xz wireguard-openbsd-6e48009803030077069532d9e43fb73898075fe2.zip |
from netbsd: The read_inode() function now returns the result of the
strategy function instead of success in all cases
-rw-r--r-- | sys/lib/libsa/ufs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/lib/libsa/ufs.c b/sys/lib/libsa/ufs.c index dab31d94610..041ebb90a27 100644 --- a/sys/lib/libsa/ufs.c +++ b/sys/lib/libsa/ufs.c @@ -1,4 +1,4 @@ -/* $NetBSD: ufs.c,v 1.13 1995/10/20 00:42:21 cgd Exp $ */ +/* $NetBSD: ufs.c,v 1.14 1996/01/13 22:25:44 leo Exp $ */ /*- * Copyright (c) 1993 @@ -152,7 +152,7 @@ read_inode(inumber, f) } out: free(buf, fs->fs_bsize); - return (0); + return (rc); } /* |