diff options
author | Mike Silbersack <silby@FreeBSD.org> | 2002-01-03 21:53:09 +0000 |
---|---|---|
committer | Mike Silbersack <silby@FreeBSD.org> | 2002-01-03 21:53:09 +0000 |
commit | cd6fdcb9ac71ac3fd3f6cbc97a61a2faa0fa4c03 (patch) | |
tree | bfee338cc7b5cc5bfeabf338082f028e173c7d90 /sys/tools | |
parent | fa041d0395c5047b6f776b7294b0abb8b028bcb8 (diff) | |
download | src-test2-cd6fdcb9ac71ac3fd3f6cbc97a61a2faa0fa4c03.tar.gz src-test2-cd6fdcb9ac71ac3fd3f6cbc97a61a2faa0fa4c03.zip |
Notes
Diffstat (limited to 'sys/tools')
-rw-r--r-- | sys/tools/vnode_if.awk | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/tools/vnode_if.awk b/sys/tools/vnode_if.awk index 32eabfef1007..795110cdba54 100644 --- a/sys/tools/vnode_if.awk +++ b/sys/tools/vnode_if.awk @@ -37,7 +37,7 @@ # # Script to produce VFS front-end sugar. # -# usage: vnode_if.sh srcfile +# usage: vnode_if.pl srcfile # (where srcfile is currently /sys/kern/vnode_if.src) # @@ -62,7 +62,7 @@ while (my $arg = shift @ARGV) { } elsif ($arg =~ m/\.src$/) { $srcfile = $arg; } else { - print "usage: vnode_if.sh [-c] [-h] srcfile\n"; + print "usage: vnode_if.pl [-c] [-h] srcfile\n"; exit(1); } } @@ -84,7 +84,7 @@ if ($hfile) { * This file is produced automatically. * Do not modify anything in here by hand. * - * Created from @(#)vnode_if.sh 8.1 (Berkeley) 6/10/93 + * Created from $FreeBSD$ */ extern struct vnodeop_desc vop_default_desc; @@ -100,7 +100,7 @@ if ($cfile) { * This file is produced automatically. * Do not modify anything in here by hand. * - * Created from @(#)vnode_if.sh 8.1 (Berkeley) 6/10/93 + * Created from $FreeBSD$ */ #include <sys/param.h> |