Date: Sun, 31 Aug 2014 21:48:13 +0000 (UTC) From: Edward Tomasz Napierala <trasz@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org Subject: svn commit: r270897 - in stable/10: sys/fs/autofs usr.sbin/autofs Message-ID: <201408312148.s7VLmDCb087604@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: trasz Date: Sun Aug 31 21:48:12 2014 New Revision: 270897 URL: http://svnweb.freebsd.org/changeset/base/270897 Log: MFC r270276: Use __FBSDID() properly. Suggested by: pluknet@ Sponsored by: The FreeBSD Foundation Modified: stable/10/sys/fs/autofs/autofs.c stable/10/sys/fs/autofs/autofs.h stable/10/sys/fs/autofs/autofs_vfsops.c stable/10/sys/fs/autofs/autofs_vnops.c stable/10/usr.sbin/autofs/automount.c stable/10/usr.sbin/autofs/automountd.c stable/10/usr.sbin/autofs/autounmountd.c stable/10/usr.sbin/autofs/common.c stable/10/usr.sbin/autofs/defined.c stable/10/usr.sbin/autofs/log.c stable/10/usr.sbin/autofs/popen.c Directory Properties: stable/10/ (props changed) Modified: stable/10/sys/fs/autofs/autofs.c ============================================================================== --- stable/10/sys/fs/autofs/autofs.c Sun Aug 31 21:46:32 2014 (r270896) +++ stable/10/sys/fs/autofs/autofs.c Sun Aug 31 21:48:12 2014 (r270897) @@ -26,7 +26,6 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD$ */ /*- * Copyright (c) 1989, 1991, 1993, 1995 @@ -61,6 +60,9 @@ * */ +#include <sys/cdefs.h> + __FBSDID("$FreeBSD$"); + #include <sys/param.h> #include <sys/systm.h> #include <sys/buf.h> Modified: stable/10/sys/fs/autofs/autofs.h ============================================================================== --- stable/10/sys/fs/autofs/autofs.h Sun Aug 31 21:46:32 2014 (r270896) +++ stable/10/sys/fs/autofs/autofs.h Sun Aug 31 21:48:12 2014 (r270897) @@ -32,9 +32,6 @@ #ifndef AUTOFS_H #define AUTOFS_H -#include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); - #define VFSTOAUTOFS(mp) ((struct autofs_mount *)((mp)->mnt_data)) MALLOC_DECLARE(M_AUTOFS); Modified: stable/10/sys/fs/autofs/autofs_vfsops.c ============================================================================== --- stable/10/sys/fs/autofs/autofs_vfsops.c Sun Aug 31 21:46:32 2014 (r270896) +++ stable/10/sys/fs/autofs/autofs_vfsops.c Sun Aug 31 21:48:12 2014 (r270897) @@ -26,9 +26,11 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD$ */ +#include <sys/cdefs.h> + __FBSDID("$FreeBSD$"); + #include <sys/param.h> #include <sys/systm.h> #include <sys/conf.h> Modified: stable/10/sys/fs/autofs/autofs_vnops.c ============================================================================== --- stable/10/sys/fs/autofs/autofs_vnops.c Sun Aug 31 21:46:32 2014 (r270896) +++ stable/10/sys/fs/autofs/autofs_vnops.c Sun Aug 31 21:48:12 2014 (r270897) @@ -26,7 +26,6 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD$ */ #include <sys/cdefs.h> Modified: stable/10/usr.sbin/autofs/automount.c ============================================================================== --- stable/10/usr.sbin/autofs/automount.c Sun Aug 31 21:46:32 2014 (r270896) +++ stable/10/usr.sbin/autofs/automount.c Sun Aug 31 21:48:12 2014 (r270897) @@ -26,9 +26,11 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD$ */ +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); + #include <sys/types.h> #include <sys/time.h> #include <sys/ioctl.h> Modified: stable/10/usr.sbin/autofs/automountd.c ============================================================================== --- stable/10/usr.sbin/autofs/automountd.c Sun Aug 31 21:46:32 2014 (r270896) +++ stable/10/usr.sbin/autofs/automountd.c Sun Aug 31 21:48:12 2014 (r270897) @@ -26,9 +26,11 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD$ */ +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); + #include <sys/types.h> #include <sys/time.h> #include <sys/ioctl.h> Modified: stable/10/usr.sbin/autofs/autounmountd.c ============================================================================== --- stable/10/usr.sbin/autofs/autounmountd.c Sun Aug 31 21:46:32 2014 (r270896) +++ stable/10/usr.sbin/autofs/autounmountd.c Sun Aug 31 21:48:12 2014 (r270897) @@ -26,9 +26,11 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD$ */ +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); + #include <sys/types.h> #include <sys/event.h> #include <sys/mount.h> Modified: stable/10/usr.sbin/autofs/common.c ============================================================================== --- stable/10/usr.sbin/autofs/common.c Sun Aug 31 21:46:32 2014 (r270896) +++ stable/10/usr.sbin/autofs/common.c Sun Aug 31 21:48:12 2014 (r270897) @@ -26,9 +26,11 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD$ */ +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); + #include <sys/types.h> #include <sys/time.h> #include <sys/ioctl.h> Modified: stable/10/usr.sbin/autofs/defined.c ============================================================================== --- stable/10/usr.sbin/autofs/defined.c Sun Aug 31 21:46:32 2014 (r270896) +++ stable/10/usr.sbin/autofs/defined.c Sun Aug 31 21:48:12 2014 (r270897) @@ -26,7 +26,6 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD$ */ /* @@ -34,6 +33,9 @@ * such as ${OSNAME}, in maps. */ +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); + #include <sys/types.h> #include <sys/time.h> #include <sys/ioctl.h> Modified: stable/10/usr.sbin/autofs/log.c ============================================================================== --- stable/10/usr.sbin/autofs/log.c Sun Aug 31 21:46:32 2014 (r270896) +++ stable/10/usr.sbin/autofs/log.c Sun Aug 31 21:48:12 2014 (r270897) @@ -26,9 +26,11 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD$ */ +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); + #include <errno.h> #include <stdarg.h> #include <stdio.h> Modified: stable/10/usr.sbin/autofs/popen.c ============================================================================== --- stable/10/usr.sbin/autofs/popen.c Sun Aug 31 21:46:32 2014 (r270896) +++ stable/10/usr.sbin/autofs/popen.c Sun Aug 31 21:48:12 2014 (r270897) @@ -34,9 +34,11 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD$ */ +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); + #include <sys/param.h> #include <sys/queue.h> #include <sys/wait.h>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201408312148.s7VLmDCb087604>