diff options
author | rwatson <rwatson@FreeBSD.org> | 2001-11-01 21:37:07 +0000 |
---|---|---|
committer | rwatson <rwatson@FreeBSD.org> | 2001-11-01 21:37:07 +0000 |
commit | 58469c01a14bb1ae439defdb758267a8267c0fea (patch) | |
tree | 1d9c8a28e242291e7b8f6d19dff5fac9b2c8f179 | |
parent | c532c3bf88b0296935bf9293accb407de43e240c (diff) | |
download | FreeBSD-src-58469c01a14bb1ae439defdb758267a8267c0fea.zip FreeBSD-src-58469c01a14bb1ae439defdb758267a8267c0fea.tar.gz |
o Update copyright dates.
o Add reference to TrustedBSD Project in license header.
o Update dated comments, including comment in extattr.h claiming that
no file systems support extended attributes.
o Improve comment consistency.
-rw-r--r-- | sys/kern/kern_acl.c | 2 | ||||
-rw-r--r-- | sys/kern/kern_cap.c | 3 | ||||
-rw-r--r-- | sys/kern/subr_acl_posix1e.c | 2 | ||||
-rw-r--r-- | sys/kern/vfs_acl.c | 2 | ||||
-rw-r--r-- | sys/sys/acl.h | 2 | ||||
-rw-r--r-- | sys/sys/extattr.h | 17 | ||||
-rw-r--r-- | sys/ufs/ufs/acl.h | 7 | ||||
-rw-r--r-- | sys/ufs/ufs/extattr.h | 7 | ||||
-rw-r--r-- | sys/ufs/ufs/ufs_acl.c | 4 | ||||
-rw-r--r-- | sys/ufs/ufs/ufs_extattr.c | 7 |
10 files changed, 34 insertions, 19 deletions
diff --git a/sys/kern/kern_acl.c b/sys/kern/kern_acl.c index e58f392..2ed6aff 100644 --- a/sys/kern/kern_acl.c +++ b/sys/kern/kern_acl.c @@ -2,6 +2,8 @@ * Copyright (c) 1999-2001 Robert N. M. Watson * All rights reserved. * + * This software was developed by Robert Watson for the TrustedBSD Project. + * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: diff --git a/sys/kern/kern_cap.c b/sys/kern/kern_cap.c index 6f9507e..af0413a 100644 --- a/sys/kern/kern_cap.c +++ b/sys/kern/kern_cap.c @@ -5,6 +5,9 @@ * Copyright (c) 1999 Ilmar S. Habibulin * All rights reserved. * + * This software was developed by Robert Watson and Ilmar Habibulin + * for the TrustedBSD Project. + * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: diff --git a/sys/kern/subr_acl_posix1e.c b/sys/kern/subr_acl_posix1e.c index e58f392..2ed6aff 100644 --- a/sys/kern/subr_acl_posix1e.c +++ b/sys/kern/subr_acl_posix1e.c @@ -2,6 +2,8 @@ * Copyright (c) 1999-2001 Robert N. M. Watson * All rights reserved. * + * This software was developed by Robert Watson for the TrustedBSD Project. + * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: diff --git a/sys/kern/vfs_acl.c b/sys/kern/vfs_acl.c index e58f392..2ed6aff 100644 --- a/sys/kern/vfs_acl.c +++ b/sys/kern/vfs_acl.c @@ -2,6 +2,8 @@ * Copyright (c) 1999-2001 Robert N. M. Watson * All rights reserved. * + * This software was developed by Robert Watson for the TrustedBSD Project. + * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: diff --git a/sys/sys/acl.h b/sys/sys/acl.h index 923a355..9fa451d 100644 --- a/sys/sys/acl.h +++ b/sys/sys/acl.h @@ -2,6 +2,8 @@ * Copyright (c) 1999-2001 Robert N. M. Watson * All rights reserved. * + * This software was developed by Robert Watson for the TrustedBSD Project. + * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: diff --git a/sys/sys/extattr.h b/sys/sys/extattr.h index d53ab03..bca21bd 100644 --- a/sys/sys/extattr.h +++ b/sys/sys/extattr.h @@ -1,7 +1,9 @@ /*- - * Copyright (c) 1999, 2000, 2001 Robert N. M. Watson + * Copyright (c) 1999-2001 Robert N. M. Watson * All rights reserved. * + * This software was developed by Robert Watson for the TrustedBSD Project. + * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: @@ -26,17 +28,8 @@ * $FreeBSD$ */ /* - * Userland/kernel interface for Extended File System Attributes - * - * This code from the FreeBSD POSIX.1e implementation. While the syscalls - * are fully implemented, invoking the VFS vnops and VFS calls as necessary, - * no file systems shipped with this version of FreeBSD implement these - * calls. Extensions to UFS/FFS to support extended attributes are - * available from the POSIX.1e implementation page, or possibly in a more - * recent version of FreeBSD. - * - * The POSIX.1e implementation page may be reached at: - * http://www.watson.org/fbsd-hardening/posix1e/ + * Developed by the TrustedBSD Project. + * Support for extended file system attributes. */ #ifndef _SYS_EXTATTR_H_ diff --git a/sys/ufs/ufs/acl.h b/sys/ufs/ufs/acl.h index f9f1e37..e12f675 100644 --- a/sys/ufs/ufs/acl.h +++ b/sys/ufs/ufs/acl.h @@ -1,7 +1,9 @@ /*- - * Copyright (c) 1999, 2000, 2001 Robert N. M. Watson + * Copyright (c) 1999-2001 Robert N. M. Watson * All rights reserved. * + * This software was developed by Robert Watson for the TrustedBSD Project. + * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: @@ -26,7 +28,8 @@ * $FreeBSD$ */ /* - * TrustedBSD Project - ACL support for the UFS file system. + * Developed by the TrustedBSD Project. + * Support for POSIX.1e access control lists. */ #ifndef _UFS_UFS_ACL_H_ diff --git a/sys/ufs/ufs/extattr.h b/sys/ufs/ufs/extattr.h index 0eca43f..4f56de9 100644 --- a/sys/ufs/ufs/extattr.h +++ b/sys/ufs/ufs/extattr.h @@ -1,7 +1,9 @@ /*- - * Copyright (c) 1999, 2000, 2001 Robert N. M. Watson + * Copyright (c) 1999-2001 Robert N. M. Watson * All rights reserved. * + * This software was developed by Robert Watson for the TrustedBSD Project. + * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: @@ -26,7 +28,8 @@ * $FreeBSD$ */ /* - * TrustedBSD Project - extended attribute support for UFS-like file systems + * Developed by the TrustedBSD Project. + * Support for extended file system attributes. */ #ifndef _UFS_UFS_EXTATTR_H_ diff --git a/sys/ufs/ufs/ufs_acl.c b/sys/ufs/ufs/ufs_acl.c index c5df402..18fc574 100644 --- a/sys/ufs/ufs/ufs_acl.c +++ b/sys/ufs/ufs/ufs_acl.c @@ -1,7 +1,9 @@ /*- - * Copyright (c) 1999, 2000, 2001 Robert N. M. Watson + * Copyright (c) 1999-2001 Robert N. M. Watson * All rights reserved. * + * This software was developed by Robert Watson for the TrustedBSD Project. + * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: diff --git a/sys/ufs/ufs/ufs_extattr.c b/sys/ufs/ufs/ufs_extattr.c index a4ba6ad..71ed166 100644 --- a/sys/ufs/ufs/ufs_extattr.c +++ b/sys/ufs/ufs/ufs_extattr.c @@ -1,7 +1,9 @@ /*- - * Copyright (c) 1999, 2000, 2001 Robert N. M. Watson + * Copyright (c) 1999-2001 Robert N. M. Watson * All rights reserved. * + * This software was developed by Robert Watson for the TrustedBSD Project. + * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: @@ -26,7 +28,8 @@ * $FreeBSD$ */ /* - * TrustedBSD Project - extended attribute support for UFS-like file systems + * Developed by the TrustedBSD Project. + * Support for file system extended attribute: UFS-specific support functions. */ #include <sys/param.h> |