Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src Use my proper name.



details:   https://anonhg.NetBSD.org/src/rev/3587a1e91db6
branches:  trunk
changeset: 487827:3587a1e91db6
user:      ad <ad%NetBSD.org@localhost>
date:      Tue Jun 13 13:36:42 2000 +0000

description:
Use my proper name.

diffstat:

 sys/arch/pmax/dev/px.c         |   6 +++---
 sys/arch/pmax/dev/pxreg.h      |   4 ++--
 sys/arch/pmax/dev/pxvar.h      |   4 ++--
 sys/dev/ic/ca.c                |   6 +++---
 sys/dev/ic/cac.c               |   6 +++---
 sys/dev/ic/cacreg.h            |   4 ++--
 sys/dev/ic/cacvar.h            |   4 ++--
 sys/dev/ic/dpt.c               |   6 +++---
 sys/dev/ic/dptreg.h            |   4 ++--
 sys/dev/ic/dptvar.h            |   4 ++--
 sys/dev/pci/cac_pci.c          |   6 +++---
 sys/dev/pci/dpt_pci.c          |   6 +++---
 sys/dev/rasops/rasops.c        |   6 +++---
 sys/dev/rasops/rasops.h        |   4 ++--
 sys/dev/rasops/rasops1.c       |   6 +++---
 sys/dev/rasops/rasops15.c      |   6 +++---
 sys/dev/rasops/rasops2.c       |   6 +++---
 sys/dev/rasops/rasops24.c      |   6 +++---
 sys/dev/rasops/rasops32.c      |   6 +++---
 sys/dev/rasops/rasops8.c       |   6 +++---
 sys/dev/rasops/rasops_bitops.h |   4 ++--
 sys/dev/rasops/rasops_masks.c  |   4 ++--
 sys/dev/rasops/rasops_masks.h  |   4 ++--
 sys/dev/wsfont/bold8x16.h      |   4 ++--
 sys/dev/wsfont/wsfont.c        |   6 +++---
 sys/dev/wsfont/wsfont.h        |   4 ++--
 usr.bin/cdplay/cdplay.1        |  28 ++++++++++++++++++++++++++--
 usr.bin/cdplay/cdplay.c        |   8 ++++----
 usr.bin/systat/icmp.c          |   6 +++---
 usr.bin/systat/ip.c            |   6 +++---
 usr.bin/systat/ip6.c           |   6 +++---
 usr.bin/systat/ipsec.c         |   6 +++---
 usr.bin/systat/tcp.c           |   6 +++---
 33 files changed, 111 insertions(+), 87 deletions(-)

diffs (truncated from 733 to 300 lines):

diff -r 0819e31d9de9 -r 3587a1e91db6 sys/arch/pmax/dev/px.c
--- a/sys/arch/pmax/dev/px.c    Tue Jun 13 12:56:59 2000 +0000
+++ b/sys/arch/pmax/dev/px.c    Tue Jun 13 13:36:42 2000 +0000
@@ -1,11 +1,11 @@
-/*     $NetBSD: px.c,v 1.30 2000/03/26 20:42:35 kleink Exp $   */
+/*     $NetBSD: px.c,v 1.31 2000/06/13 13:39:11 ad Exp $       */
 
 /*-
  * Copyright (c) 1999 The NetBSD Foundation, Inc.
  * All rights reserved.
  *
  * This code is derived from software contributed to The NetBSD Foundation
- * by Andy Doran.
+ * by Andrew Doran.
  *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions
@@ -43,7 +43,7 @@
 #endif
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: px.c,v 1.30 2000/03/26 20:42:35 kleink Exp $");
+__KERNEL_RCSID(0, "$NetBSD: px.c,v 1.31 2000/06/13 13:39:11 ad Exp $");
 
 /*
  * px.c: driver for the DEC TURBOchannel 2D and 3D accelerated framebuffers
diff -r 0819e31d9de9 -r 3587a1e91db6 sys/arch/pmax/dev/pxreg.h
--- a/sys/arch/pmax/dev/pxreg.h Tue Jun 13 12:56:59 2000 +0000
+++ b/sys/arch/pmax/dev/pxreg.h Tue Jun 13 13:36:42 2000 +0000
@@ -1,11 +1,11 @@
-/*     $NetBSD: pxreg.h,v 1.7 2000/01/14 02:00:46 ad Exp $     */
+/*     $NetBSD: pxreg.h,v 1.8 2000/06/13 13:39:12 ad Exp $     */
 
 /*-
  * Copyright (c) 1999 The NetBSD Foundation, Inc.
  * All rights reserved.
  *
  * This code is derived from software contributed to The NetBSD Foundation
- * by Andy Doran.
+ * by Andrew Doran.
  *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions
diff -r 0819e31d9de9 -r 3587a1e91db6 sys/arch/pmax/dev/pxvar.h
--- a/sys/arch/pmax/dev/pxvar.h Tue Jun 13 12:56:59 2000 +0000
+++ b/sys/arch/pmax/dev/pxvar.h Tue Jun 13 13:36:42 2000 +0000
@@ -1,11 +1,11 @@
-/*     $NetBSD: pxvar.h,v 1.10 2000/02/03 04:09:17 nisimura Exp $      */
+/*     $NetBSD: pxvar.h,v 1.11 2000/06/13 13:39:12 ad Exp $    */
 
 /*-
  * Copyright (c) 1999 The NetBSD Foundation, Inc.
  * All rights reserved.
  *
  * This code is derived from software contributed to The NetBSD Foundation
- * by Andy Doran.
+ * by Andrew Doran.
  *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions
diff -r 0819e31d9de9 -r 3587a1e91db6 sys/dev/ic/ca.c
--- a/sys/dev/ic/ca.c   Tue Jun 13 12:56:59 2000 +0000
+++ b/sys/dev/ic/ca.c   Tue Jun 13 13:36:42 2000 +0000
@@ -1,11 +1,11 @@
-/*     $NetBSD: ca.c,v 1.6 2000/06/12 11:07:45 ad Exp $        */
+/*     $NetBSD: ca.c,v 1.7 2000/06/13 13:36:45 ad Exp $        */
 
 /*-
  * Copyright (c) 1998, 2000 The NetBSD Foundation, Inc.
  * All rights reserved.
  *
  * This code is derived from software contributed to The NetBSD Foundation
- * by Charles M. Hannum and Andy Doran.
+ * by Charles M. Hannum and Andrew Doran.
  *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions
@@ -58,7 +58,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ca.c,v 1.6 2000/06/12 11:07:45 ad Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ca.c,v 1.7 2000/06/13 13:36:45 ad Exp $");
 
 #include "rnd.h"
 
diff -r 0819e31d9de9 -r 3587a1e91db6 sys/dev/ic/cac.c
--- a/sys/dev/ic/cac.c  Tue Jun 13 12:56:59 2000 +0000
+++ b/sys/dev/ic/cac.c  Tue Jun 13 13:36:42 2000 +0000
@@ -1,11 +1,11 @@
-/*     $NetBSD: cac.c,v 1.5 2000/05/03 18:58:15 thorpej Exp $  */
+/*     $NetBSD: cac.c,v 1.6 2000/06/13 13:36:46 ad Exp $       */
 
 /*-
  * Copyright (c) 2000 The NetBSD Foundation, Inc.
  * All rights reserved.
  *
  * This code is derived from software contributed to The NetBSD Foundation
- * by Andy Doran.
+ * by Andrew Doran.
  *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions
@@ -41,7 +41,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: cac.c,v 1.5 2000/05/03 18:58:15 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: cac.c,v 1.6 2000/06/13 13:36:46 ad Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
diff -r 0819e31d9de9 -r 3587a1e91db6 sys/dev/ic/cacreg.h
--- a/sys/dev/ic/cacreg.h       Tue Jun 13 12:56:59 2000 +0000
+++ b/sys/dev/ic/cacreg.h       Tue Jun 13 13:36:42 2000 +0000
@@ -1,11 +1,11 @@
-/*     $NetBSD: cacreg.h,v 1.2 2000/03/20 18:48:34 ad Exp $    */
+/*     $NetBSD: cacreg.h,v 1.3 2000/06/13 13:36:47 ad Exp $    */
 
 /*-
  * Copyright (c) 2000 The NetBSD Foundation, Inc.
  * All rights reserved.
  *
  * This code is derived from software contributed to The NetBSD Foundation
- * by Andy Doran.
+ * by Andrew Doran.
  *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions
diff -r 0819e31d9de9 -r 3587a1e91db6 sys/dev/ic/cacvar.h
--- a/sys/dev/ic/cacvar.h       Tue Jun 13 12:56:59 2000 +0000
+++ b/sys/dev/ic/cacvar.h       Tue Jun 13 13:36:42 2000 +0000
@@ -1,11 +1,11 @@
-/*     $NetBSD: cacvar.h,v 1.4 2000/05/04 17:27:25 ad Exp $    */
+/*     $NetBSD: cacvar.h,v 1.5 2000/06/13 13:36:47 ad Exp $    */
 
 /*-
  * Copyright (c) 2000 The NetBSD Foundation, Inc.
  * All rights reserved.
  *
  * This code is derived from software contributed to The NetBSD Foundation
- * by Andy Doran.
+ * by Andrew Doran.
  *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions
diff -r 0819e31d9de9 -r 3587a1e91db6 sys/dev/ic/dpt.c
--- a/sys/dev/ic/dpt.c  Tue Jun 13 12:56:59 2000 +0000
+++ b/sys/dev/ic/dpt.c  Tue Jun 13 13:36:42 2000 +0000
@@ -1,11 +1,11 @@
-/*     $NetBSD: dpt.c,v 1.21 2000/03/16 15:13:05 ad Exp $      */
+/*     $NetBSD: dpt.c,v 1.22 2000/06/13 13:36:42 ad Exp $      */
 
 /*-
  * Copyright (c) 1997, 1998, 1999, 2000 The NetBSD Foundation, Inc.
  * All rights reserved.
  *
  * This code is derived from software contributed to The NetBSD Foundation
- * by Andy Doran, Charles M. Hannum and by Jason R. Thorpe of the Numerical 
+ * by Andrew Doran, Charles M. Hannum and by Jason R. Thorpe of the Numerical
  * Aerospace Simulation Facility, NASA Ames Research Center.
  *
  * Redistribution and use in source and binary forms, with or without
@@ -55,7 +55,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: dpt.c,v 1.21 2000/03/16 15:13:05 ad Exp $");
+__KERNEL_RCSID(0, "$NetBSD: dpt.c,v 1.22 2000/06/13 13:36:42 ad Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
diff -r 0819e31d9de9 -r 3587a1e91db6 sys/dev/ic/dptreg.h
--- a/sys/dev/ic/dptreg.h       Tue Jun 13 12:56:59 2000 +0000
+++ b/sys/dev/ic/dptreg.h       Tue Jun 13 13:36:42 2000 +0000
@@ -1,7 +1,7 @@
-/*     $NetBSD: dptreg.h,v 1.8 2000/03/25 13:38:35 ad Exp $    */
+/*     $NetBSD: dptreg.h,v 1.9 2000/06/13 13:36:44 ad Exp $    */
 
 /*
- * Copyright (c) 1999 Andy Doran <ad%NetBSD.org@localhost>
+ * Copyright (c) 1999 Andrew Doran <ad%NetBSD.org@localhost>
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
diff -r 0819e31d9de9 -r 3587a1e91db6 sys/dev/ic/dptvar.h
--- a/sys/dev/ic/dptvar.h       Tue Jun 13 12:56:59 2000 +0000
+++ b/sys/dev/ic/dptvar.h       Tue Jun 13 13:36:42 2000 +0000
@@ -1,7 +1,7 @@
-/*     $NetBSD: dptvar.h,v 1.6 2000/02/24 18:47:55 ad Exp $    */
+/*     $NetBSD: dptvar.h,v 1.7 2000/06/13 13:36:44 ad Exp $    */
 
 /*
- * Copyright (c) 1999 Andy Doran <ad%NetBSD.org@localhost>
+ * Copyright (c) 1999 Andrew Doran <ad%NetBSD.org@localhost>
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
diff -r 0819e31d9de9 -r 3587a1e91db6 sys/dev/pci/cac_pci.c
--- a/sys/dev/pci/cac_pci.c     Tue Jun 13 12:56:59 2000 +0000
+++ b/sys/dev/pci/cac_pci.c     Tue Jun 13 13:36:42 2000 +0000
@@ -1,11 +1,11 @@
-/*     $NetBSD: cac_pci.c,v 1.3 2000/03/23 11:33:35 ad Exp $   */
+/*     $NetBSD: cac_pci.c,v 1.4 2000/06/13 13:36:52 ad Exp $   */
 
 /*-
  * Copyright (c) 2000 The NetBSD Foundation, Inc.
  * All rights reserved.
  *
  * This code is derived from software contributed to The NetBSD Foundation
- * by Andy Doran.
+ * by Andrew Doran.
  *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions
@@ -41,7 +41,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: cac_pci.c,v 1.3 2000/03/23 11:33:35 ad Exp $");
+__KERNEL_RCSID(0, "$NetBSD: cac_pci.c,v 1.4 2000/06/13 13:36:52 ad Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
diff -r 0819e31d9de9 -r 3587a1e91db6 sys/dev/pci/dpt_pci.c
--- a/sys/dev/pci/dpt_pci.c     Tue Jun 13 12:56:59 2000 +0000
+++ b/sys/dev/pci/dpt_pci.c     Tue Jun 13 13:36:42 2000 +0000
@@ -1,7 +1,7 @@
-/*     $NetBSD: dpt_pci.c,v 1.5 2000/02/25 00:23:57 ad Exp $   */
+/*     $NetBSD: dpt_pci.c,v 1.6 2000/06/13 13:36:50 ad Exp $   */
 
 /*
- * Copyright (c) 1999 Andy Doran <ad%NetBSD.org@localhost>
+ * Copyright (c) 1999 Andrew Doran <ad%NetBSD.org@localhost>
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
@@ -32,7 +32,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: dpt_pci.c,v 1.5 2000/02/25 00:23:57 ad Exp $");
+__KERNEL_RCSID(0, "$NetBSD: dpt_pci.c,v 1.6 2000/06/13 13:36:50 ad Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
diff -r 0819e31d9de9 -r 3587a1e91db6 sys/dev/rasops/rasops.c
--- a/sys/dev/rasops/rasops.c   Tue Jun 13 12:56:59 2000 +0000
+++ b/sys/dev/rasops/rasops.c   Tue Jun 13 13:36:42 2000 +0000
@@ -1,11 +1,11 @@
-/*      $NetBSD: rasops.c,v 1.31 2000/06/12 23:45:45 sommerfeld Exp $  */
+/*      $NetBSD: rasops.c,v 1.32 2000/06/13 13:36:53 ad Exp $  */
 
 /*-
  * Copyright (c) 1999 The NetBSD Foundation, Inc.
  * All rights reserved.
  *
  * This code is derived from software contributed to The NetBSD Foundation
- * by Andy Doran.
+ * by Andrew Doran.
  *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions
@@ -37,7 +37,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: rasops.c,v 1.31 2000/06/12 23:45:45 sommerfeld Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rasops.c,v 1.32 2000/06/13 13:36:53 ad Exp $");
 
 #include "opt_rasops.h"
 #include "rasops_glue.h"
diff -r 0819e31d9de9 -r 3587a1e91db6 sys/dev/rasops/rasops.h
--- a/sys/dev/rasops/rasops.h   Tue Jun 13 12:56:59 2000 +0000
+++ b/sys/dev/rasops/rasops.h   Tue Jun 13 13:36:42 2000 +0000
@@ -1,11 +1,11 @@
-/*     $NetBSD: rasops.h,v 1.12 2000/04/12 14:22:28 pk Exp $ */
+/*     $NetBSD: rasops.h,v 1.13 2000/06/13 13:36:54 ad Exp $ */
 
 /*-
  * Copyright (c) 1999 The NetBSD Foundation, Inc.
  * All rights reserved.
  *
  * This code is derived from software contributed to The NetBSD Foundation
- * by Andy Doran.
+ * by Andrew Doran.
  *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions
diff -r 0819e31d9de9 -r 3587a1e91db6 sys/dev/rasops/rasops1.c
--- a/sys/dev/rasops/rasops1.c  Tue Jun 13 12:56:59 2000 +0000
+++ b/sys/dev/rasops/rasops1.c  Tue Jun 13 13:36:42 2000 +0000
@@ -1,11 +1,11 @@
-/*     $NetBSD: rasops1.c,v 1.11 2000/04/12 14:22:29 pk Exp $  */
+/*     $NetBSD: rasops1.c,v 1.12 2000/06/13 13:36:55 ad Exp $  */
 
 /*-
  * Copyright (c) 1999 The NetBSD Foundation, Inc.
  * All rights reserved.
  *



Home | Main Index | Thread Index | Old Index