diff options
author | alex <alex@FreeBSD.org> | 1998-06-10 19:56:06 +0000 |
---|---|---|
committer | alex <alex@FreeBSD.org> | 1998-06-10 19:56:06 +0000 |
commit | a3798e908e88069196210234df0ec415265a2b2a (patch) | |
tree | c4828b8eb9b0ff8e899f687e9f647789b94400fc /sys | |
parent | 27341c23aa6dcd5d613a523fa4194eb5b5f59029 (diff) | |
download | FreeBSD-src-a3798e908e88069196210234df0ec415265a2b2a.zip FreeBSD-src-a3798e908e88069196210234df0ec415265a2b2a.tar.gz |
ENOPNOTSUPP --> EOPNOTSUPP
PR: 6906
Submitted by: Steven G. Kargl <kargl@troutmask.apl.washington.edu>
Diffstat (limited to 'sys')
-rw-r--r-- | sys/fs/fdescfs/fdesc_vnops.c | 4 | ||||
-rw-r--r-- | sys/miscfs/fdesc/fdesc_vnops.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/fs/fdescfs/fdesc_vnops.c b/sys/fs/fdescfs/fdesc_vnops.c index 6765012..8ce5f24 100644 --- a/sys/fs/fdescfs/fdesc_vnops.c +++ b/sys/fs/fdescfs/fdesc_vnops.c @@ -35,7 +35,7 @@ * * @(#)fdesc_vnops.c 8.9 (Berkeley) 1/21/94 * - * $Id: fdesc_vnops.c,v 1.34 1998/02/09 06:09:42 eivind Exp $ + * $Id: fdesc_vnops.c,v 1.35 1998/06/10 06:34:55 peter Exp $ */ /* @@ -537,7 +537,7 @@ fdesc_setattr(ap) case DTYPE_SOCKET: if (vap->va_flags != VNOVAL) - error = ENOPNOTSUPP; + error = EOPNOTSUPP; else error = 0; break; diff --git a/sys/miscfs/fdesc/fdesc_vnops.c b/sys/miscfs/fdesc/fdesc_vnops.c index 6765012..8ce5f24 100644 --- a/sys/miscfs/fdesc/fdesc_vnops.c +++ b/sys/miscfs/fdesc/fdesc_vnops.c @@ -35,7 +35,7 @@ * * @(#)fdesc_vnops.c 8.9 (Berkeley) 1/21/94 * - * $Id: fdesc_vnops.c,v 1.34 1998/02/09 06:09:42 eivind Exp $ + * $Id: fdesc_vnops.c,v 1.35 1998/06/10 06:34:55 peter Exp $ */ /* @@ -537,7 +537,7 @@ fdesc_setattr(ap) case DTYPE_SOCKET: if (vap->va_flags != VNOVAL) - error = ENOPNOTSUPP; + error = EOPNOTSUPP; else error = 0; break; |