diff options
Diffstat (limited to 'sbin/gpt')
-rw-r--r-- | sbin/gpt/Makefile | 2 | ||||
-rw-r--r-- | sbin/gpt/add.c | 2 | ||||
-rw-r--r-- | sbin/gpt/boot.c | 2 | ||||
-rw-r--r-- | sbin/gpt/create.c | 2 | ||||
-rw-r--r-- | sbin/gpt/destroy.c | 2 | ||||
-rw-r--r-- | sbin/gpt/gpt.8 | 2 | ||||
-rw-r--r-- | sbin/gpt/gpt.c | 2 | ||||
-rw-r--r-- | sbin/gpt/gpt.h | 2 | ||||
-rw-r--r-- | sbin/gpt/label.c | 2 | ||||
-rw-r--r-- | sbin/gpt/map.c | 2 | ||||
-rw-r--r-- | sbin/gpt/map.h | 2 | ||||
-rw-r--r-- | sbin/gpt/migrate.c | 2 | ||||
-rw-r--r-- | sbin/gpt/recover.c | 2 | ||||
-rw-r--r-- | sbin/gpt/remove.c | 2 | ||||
-rw-r--r-- | sbin/gpt/show.c | 2 |
15 files changed, 15 insertions, 15 deletions
diff --git a/sbin/gpt/Makefile b/sbin/gpt/Makefile index b619b00f3002..9352a042d65a 100644 --- a/sbin/gpt/Makefile +++ b/sbin/gpt/Makefile @@ -1,4 +1,4 @@ -# $FreeBSD$ +# $FreeBSD: src/sbin/gpt/Makefile,v 1.7.2.1.4.1 2009/04/15 03:14:26 kensmith Exp $ PROG= gpt SRCS= add.c boot.c create.c destroy.c gpt.c label.c map.c migrate.c \ diff --git a/sbin/gpt/add.c b/sbin/gpt/add.c index b2c20a0302b9..63d0e42e585c 100644 --- a/sbin/gpt/add.c +++ b/sbin/gpt/add.c @@ -25,7 +25,7 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); +__FBSDID("$FreeBSD: src/sbin/gpt/add.c,v 1.15.2.1.4.1 2009/04/15 03:14:26 kensmith Exp $"); #include <sys/types.h> diff --git a/sbin/gpt/boot.c b/sbin/gpt/boot.c index b4a151acce4b..e30ca6ee047a 100644 --- a/sbin/gpt/boot.c +++ b/sbin/gpt/boot.c @@ -29,7 +29,7 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); +__FBSDID("$FreeBSD: src/sbin/gpt/boot.c,v 1.2.2.1.4.1 2009/04/15 03:14:26 kensmith Exp $"); #include <sys/types.h> #include <sys/stat.h> diff --git a/sbin/gpt/create.c b/sbin/gpt/create.c index 24a6a6d014fb..125d3cc3838e 100644 --- a/sbin/gpt/create.c +++ b/sbin/gpt/create.c @@ -25,7 +25,7 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); +__FBSDID("$FreeBSD: src/sbin/gpt/create.c,v 1.11.8.1 2009/04/15 03:14:26 kensmith Exp $"); #include <sys/types.h> diff --git a/sbin/gpt/destroy.c b/sbin/gpt/destroy.c index 7c2c198608bc..e932b8bcaf09 100644 --- a/sbin/gpt/destroy.c +++ b/sbin/gpt/destroy.c @@ -25,7 +25,7 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); +__FBSDID("$FreeBSD: src/sbin/gpt/destroy.c,v 1.6.8.1 2009/04/15 03:14:26 kensmith Exp $"); #include <sys/types.h> diff --git a/sbin/gpt/gpt.8 b/sbin/gpt/gpt.8 index 0e3acef2f999..ecddebb2bcac 100644 --- a/sbin/gpt/gpt.8 +++ b/sbin/gpt/gpt.8 @@ -22,7 +22,7 @@ .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.\" $FreeBSD$ +.\" $FreeBSD: src/sbin/gpt/gpt.8,v 1.17.2.2.4.1 2009/04/15 03:14:26 kensmith Exp $ .\" .Dd February 5, 2008 .Os diff --git a/sbin/gpt/gpt.c b/sbin/gpt/gpt.c index 34258a6ac8d6..3a6eb2c65eb7 100644 --- a/sbin/gpt/gpt.c +++ b/sbin/gpt/gpt.c @@ -27,7 +27,7 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); +__FBSDID("$FreeBSD: src/sbin/gpt/gpt.c,v 1.16.2.4.4.1 2009/04/15 03:14:26 kensmith Exp $"); #include <sys/param.h> #include <sys/types.h> diff --git a/sbin/gpt/gpt.h b/sbin/gpt/gpt.h index 857eaf0901d7..deead4926134 100644 --- a/sbin/gpt/gpt.h +++ b/sbin/gpt/gpt.h @@ -23,7 +23,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $FreeBSD$ + * $FreeBSD: src/sbin/gpt/gpt.h,v 1.11.2.1.4.1 2009/04/15 03:14:26 kensmith Exp $ */ #ifndef _GPT_H_ diff --git a/sbin/gpt/label.c b/sbin/gpt/label.c index 4a793cd1cc12..ca783332e441 100644 --- a/sbin/gpt/label.c +++ b/sbin/gpt/label.c @@ -25,7 +25,7 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); +__FBSDID("$FreeBSD: src/sbin/gpt/label.c,v 1.3.8.1 2009/04/15 03:14:26 kensmith Exp $"); #include <sys/types.h> diff --git a/sbin/gpt/map.c b/sbin/gpt/map.c index 91b56850b9c4..63d941e5c8f9 100644 --- a/sbin/gpt/map.c +++ b/sbin/gpt/map.c @@ -25,7 +25,7 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); +__FBSDID("$FreeBSD: src/sbin/gpt/map.c,v 1.6.8.1 2009/04/15 03:14:26 kensmith Exp $"); #include <sys/types.h> #include <err.h> diff --git a/sbin/gpt/map.h b/sbin/gpt/map.h index 4c3f0992d59a..c1ccc3c34a46 100644 --- a/sbin/gpt/map.h +++ b/sbin/gpt/map.h @@ -23,7 +23,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $FreeBSD$ + * $FreeBSD: src/sbin/gpt/map.h,v 1.6.8.1 2009/04/15 03:14:26 kensmith Exp $ */ #ifndef _MAP_H_ diff --git a/sbin/gpt/migrate.c b/sbin/gpt/migrate.c index 798949dcfdb9..497d8b523328 100644 --- a/sbin/gpt/migrate.c +++ b/sbin/gpt/migrate.c @@ -25,7 +25,7 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); +__FBSDID("$FreeBSD: src/sbin/gpt/migrate.c,v 1.16.2.1.4.1 2009/04/15 03:14:26 kensmith Exp $"); #include <sys/types.h> #include <sys/disklabel.h> diff --git a/sbin/gpt/recover.c b/sbin/gpt/recover.c index dd13a64951ed..64daeeb89b7a 100644 --- a/sbin/gpt/recover.c +++ b/sbin/gpt/recover.c @@ -25,7 +25,7 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); +__FBSDID("$FreeBSD: src/sbin/gpt/recover.c,v 1.8.8.1 2009/04/15 03:14:26 kensmith Exp $"); #include <sys/types.h> diff --git a/sbin/gpt/remove.c b/sbin/gpt/remove.c index 381ff0b8217f..645b63017026 100644 --- a/sbin/gpt/remove.c +++ b/sbin/gpt/remove.c @@ -25,7 +25,7 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); +__FBSDID("$FreeBSD: src/sbin/gpt/remove.c,v 1.10.8.1 2009/04/15 03:14:26 kensmith Exp $"); #include <sys/types.h> diff --git a/sbin/gpt/show.c b/sbin/gpt/show.c index 9531288346df..05301e549cb4 100644 --- a/sbin/gpt/show.c +++ b/sbin/gpt/show.c @@ -25,7 +25,7 @@ */ #include <sys/cdefs.h> -__FBSDID("$FreeBSD$"); +__FBSDID("$FreeBSD: src/sbin/gpt/show.c,v 1.14.2.2.4.1 2009/04/15 03:14:26 kensmith Exp $"); #include <sys/types.h> |