Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src Fix bad cut'n'paste in copyright. Pointed out by dyoung@
details: https://anonhg.NetBSD.org/src/rev/164130074107
branches: trunk
changeset: 765835:164130074107
user: bouyer <bouyer%NetBSD.org@localhost>
date: Tue Jun 07 14:56:12 2011 +0000
description:
Fix bad cut'n'paste in copyright. Pointed out by dyoung@
diffstat:
common/include/quota/quota.h | 4 +---
common/include/quota/quotaprop.h | 4 +---
common/lib/libquota/quotaprop.c | 4 +---
common/lib/libquota/quotasubr.c | 4 +---
lib/libquota/getfsquota.c | 6 ++----
lib/libquota/getufsquota.c | 6 ++----
sbin/fsck_ffs/pass6.c | 4 +---
sbin/fsck_ffs/quota2.c | 4 +---
sys/sys/quota.h | 4 +---
sys/ufs/ffs/ffs_quota2.c | 6 ++----
sys/ufs/ufs/quota1_subr.c | 6 ++----
sys/ufs/ufs/quota2.h | 4 +---
sys/ufs/ufs/quota2_subr.c | 6 ++----
sys/ufs/ufs/ufs_quota2.c | 6 ++----
usr.bin/quota/getvfsquota.c | 6 ++----
usr.sbin/quotactl/quotactl.c | 6 ++----
16 files changed, 24 insertions(+), 56 deletions(-)
diffs (299 lines):
diff -r d7e39cce27c2 -r 164130074107 common/include/quota/quota.h
--- a/common/include/quota/quota.h Tue Jun 07 14:53:03 2011 +0000
+++ b/common/include/quota/quota.h Tue Jun 07 14:56:12 2011 +0000
@@ -1,9 +1,7 @@
-/* $NetBSD: quota.h,v 1.1 2011/03/24 17:05:39 bouyer Exp $ */
+/* $NetBSD: quota.h,v 1.2 2011/06/07 14:56:12 bouyer Exp $ */
/*-
* Copyright (c) 2010 Manuel Bouyer
* All rights reserved.
- * This software is distributed under the following condiions
- * compliant with the NetBSD foundation policy.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
diff -r d7e39cce27c2 -r 164130074107 common/include/quota/quotaprop.h
--- a/common/include/quota/quotaprop.h Tue Jun 07 14:53:03 2011 +0000
+++ b/common/include/quota/quotaprop.h Tue Jun 07 14:56:12 2011 +0000
@@ -1,9 +1,7 @@
-/* $NetBSD: quotaprop.h,v 1.1 2011/03/24 17:05:39 bouyer Exp $ */
+/* $NetBSD: quotaprop.h,v 1.2 2011/06/07 14:56:12 bouyer Exp $ */
/*-
* Copyright (c) 2010 Manuel Bouyer
* All rights reserved.
- * This software is distributed under the following condiions
- * compliant with the NetBSD foundation policy.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
diff -r d7e39cce27c2 -r 164130074107 common/lib/libquota/quotaprop.c
--- a/common/lib/libquota/quotaprop.c Tue Jun 07 14:53:03 2011 +0000
+++ b/common/lib/libquota/quotaprop.c Tue Jun 07 14:56:12 2011 +0000
@@ -1,9 +1,7 @@
-/* $NetBSD: quotaprop.c,v 1.1 2011/03/24 17:05:40 bouyer Exp $ */
+/* $NetBSD: quotaprop.c,v 1.2 2011/06/07 14:56:12 bouyer Exp $ */
/*-
* Copyright (c) 2011 Manuel Bouyer
* All rights reserved.
- * This software is distributed under the following condiions
- * compliant with the NetBSD foundation policy.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
diff -r d7e39cce27c2 -r 164130074107 common/lib/libquota/quotasubr.c
--- a/common/lib/libquota/quotasubr.c Tue Jun 07 14:53:03 2011 +0000
+++ b/common/lib/libquota/quotasubr.c Tue Jun 07 14:56:12 2011 +0000
@@ -1,9 +1,7 @@
-/* $NetBSD: quotasubr.c,v 1.1 2011/03/24 17:05:40 bouyer Exp $ */
+/* $NetBSD: quotasubr.c,v 1.2 2011/06/07 14:56:12 bouyer Exp $ */
/*-
* Copyright (c) 2011 Manuel Bouyer
* All rights reserved.
- * This software is distributed under the following condiions
- * compliant with the NetBSD foundation policy.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
diff -r d7e39cce27c2 -r 164130074107 lib/libquota/getfsquota.c
--- a/lib/libquota/getfsquota.c Tue Jun 07 14:53:03 2011 +0000
+++ b/lib/libquota/getfsquota.c Tue Jun 07 14:56:12 2011 +0000
@@ -1,10 +1,8 @@
-/* $NetBSD: getfsquota.c,v 1.1 2011/03/24 17:05:43 bouyer Exp $ */
+/* $NetBSD: getfsquota.c,v 1.2 2011/06/07 14:56:12 bouyer Exp $ */
/*-
* Copyright (c) 2011 Manuel Bouyer
* All rights reserved.
- * This software is distributed under the following condiions
- * compliant with the NetBSD foundation policy.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -29,7 +27,7 @@
*/
#include <sys/cdefs.h>
-__RCSID("$NetBSD: getfsquota.c,v 1.1 2011/03/24 17:05:43 bouyer Exp $");
+__RCSID("$NetBSD: getfsquota.c,v 1.2 2011/06/07 14:56:12 bouyer Exp $");
#include <stdio.h>
#include <stdlib.h>
diff -r d7e39cce27c2 -r 164130074107 lib/libquota/getufsquota.c
--- a/lib/libquota/getufsquota.c Tue Jun 07 14:53:03 2011 +0000
+++ b/lib/libquota/getufsquota.c Tue Jun 07 14:56:12 2011 +0000
@@ -1,10 +1,8 @@
-/* $NetBSD: getufsquota.c,v 1.1 2011/03/24 17:05:43 bouyer Exp $ */
+/* $NetBSD: getufsquota.c,v 1.2 2011/06/07 14:56:12 bouyer Exp $ */
/*-
* Copyright (c) 2011 Manuel Bouyer
* All rights reserved.
- * This software is distributed under the following condiions
- * compliant with the NetBSD foundation policy.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -29,7 +27,7 @@
*/
#include <sys/cdefs.h>
-__RCSID("$NetBSD: getufsquota.c,v 1.1 2011/03/24 17:05:43 bouyer Exp $");
+__RCSID("$NetBSD: getufsquota.c,v 1.2 2011/06/07 14:56:12 bouyer Exp $");
#include <stdio.h>
#include <stdlib.h>
diff -r d7e39cce27c2 -r 164130074107 sbin/fsck_ffs/pass6.c
--- a/sbin/fsck_ffs/pass6.c Tue Jun 07 14:53:03 2011 +0000
+++ b/sbin/fsck_ffs/pass6.c Tue Jun 07 14:56:12 2011 +0000
@@ -1,9 +1,7 @@
-/* $NetBSD: pass6.c,v 1.2 2011/03/06 17:08:16 bouyer Exp $ */
+/* $NetBSD: pass6.c,v 1.3 2011/06/07 14:56:12 bouyer Exp $ */
/*-
* Copyright (c) 2010 Manuel Bouyer
* All rights reserved.
- * This software is distributed under the following condiions
- * compliant with the NetBSD foundation policy.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
diff -r d7e39cce27c2 -r 164130074107 sbin/fsck_ffs/quota2.c
--- a/sbin/fsck_ffs/quota2.c Tue Jun 07 14:53:03 2011 +0000
+++ b/sbin/fsck_ffs/quota2.c Tue Jun 07 14:56:12 2011 +0000
@@ -1,9 +1,7 @@
-/* $NetBSD: quota2.c,v 1.2 2011/03/06 17:08:16 bouyer Exp $ */
+/* $NetBSD: quota2.c,v 1.3 2011/06/07 14:56:12 bouyer Exp $ */
/*-
* Copyright (c) 2010 Manuel Bouyer
* All rights reserved.
- * This software is distributed under the following condiions
- * compliant with the NetBSD foundation policy.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
diff -r d7e39cce27c2 -r 164130074107 sys/sys/quota.h
--- a/sys/sys/quota.h Tue Jun 07 14:53:03 2011 +0000
+++ b/sys/sys/quota.h Tue Jun 07 14:56:12 2011 +0000
@@ -1,9 +1,7 @@
-/* $NetBSD: quota.h,v 1.3 2011/03/24 17:05:45 bouyer Exp $ */
+/* $NetBSD: quota.h,v 1.4 2011/06/07 14:56:13 bouyer Exp $ */
/*-
* Copyright (c) 2010 Manuel Bouyer
* All rights reserved.
- * This software is distributed under the following condiions
- * compliant with the NetBSD foundation policy.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
diff -r d7e39cce27c2 -r 164130074107 sys/ufs/ffs/ffs_quota2.c
--- a/sys/ufs/ffs/ffs_quota2.c Tue Jun 07 14:53:03 2011 +0000
+++ b/sys/ufs/ffs/ffs_quota2.c Tue Jun 07 14:56:12 2011 +0000
@@ -1,9 +1,7 @@
-/* $NetBSD: ffs_quota2.c,v 1.2 2011/03/06 17:08:38 bouyer Exp $ */
+/* $NetBSD: ffs_quota2.c,v 1.3 2011/06/07 14:56:13 bouyer Exp $ */
/*-
* Copyright (c) 2010 Manuel Bouyer
* All rights reserved.
- * This software is distributed under the following condiions
- * compliant with the NetBSD foundation policy.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -28,7 +26,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ffs_quota2.c,v 1.2 2011/03/06 17:08:38 bouyer Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ffs_quota2.c,v 1.3 2011/06/07 14:56:13 bouyer Exp $");
#include <sys/param.h>
#include <sys/kernel.h>
diff -r d7e39cce27c2 -r 164130074107 sys/ufs/ufs/quota1_subr.c
--- a/sys/ufs/ufs/quota1_subr.c Tue Jun 07 14:53:03 2011 +0000
+++ b/sys/ufs/ufs/quota1_subr.c Tue Jun 07 14:56:12 2011 +0000
@@ -1,9 +1,7 @@
-/* $NetBSD: quota1_subr.c,v 1.3 2011/03/24 17:05:45 bouyer Exp $ */
+/* $NetBSD: quota1_subr.c,v 1.4 2011/06/07 14:56:13 bouyer Exp $ */
/*-
* Copyright (c) 2010 Manuel Bouyer
* All rights reserved.
- * This software is distributed under the following condiions
- * compliant with the NetBSD foundation policy.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -28,7 +26,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: quota1_subr.c,v 1.3 2011/03/24 17:05:45 bouyer Exp $");
+__KERNEL_RCSID(0, "$NetBSD: quota1_subr.c,v 1.4 2011/06/07 14:56:13 bouyer Exp $");
#include <sys/types.h>
#include <machine/limits.h>
diff -r d7e39cce27c2 -r 164130074107 sys/ufs/ufs/quota2.h
--- a/sys/ufs/ufs/quota2.h Tue Jun 07 14:53:03 2011 +0000
+++ b/sys/ufs/ufs/quota2.h Tue Jun 07 14:56:12 2011 +0000
@@ -1,9 +1,7 @@
-/* $NetBSD: quota2.h,v 1.4 2011/03/24 17:05:45 bouyer Exp $ */
+/* $NetBSD: quota2.h,v 1.5 2011/06/07 14:56:13 bouyer Exp $ */
/*-
* Copyright (c) 2010 Manuel Bouyer
* All rights reserved.
- * This software is distributed under the following condiions
- * compliant with the NetBSD foundation policy.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
diff -r d7e39cce27c2 -r 164130074107 sys/ufs/ufs/quota2_subr.c
--- a/sys/ufs/ufs/quota2_subr.c Tue Jun 07 14:53:03 2011 +0000
+++ b/sys/ufs/ufs/quota2_subr.c Tue Jun 07 14:56:12 2011 +0000
@@ -1,9 +1,7 @@
-/* $NetBSD: quota2_subr.c,v 1.3 2011/03/24 17:05:46 bouyer Exp $ */
+/* $NetBSD: quota2_subr.c,v 1.4 2011/06/07 14:56:13 bouyer Exp $ */
/*-
* Copyright (c) 2010 Manuel Bouyer
* All rights reserved.
- * This software is distributed under the following condiions
- * compliant with the NetBSD foundation policy.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -28,7 +26,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: quota2_subr.c,v 1.3 2011/03/24 17:05:46 bouyer Exp $");
+__KERNEL_RCSID(0, "$NetBSD: quota2_subr.c,v 1.4 2011/06/07 14:56:13 bouyer Exp $");
#include <sys/param.h>
#include <sys/time.h>
diff -r d7e39cce27c2 -r 164130074107 sys/ufs/ufs/ufs_quota2.c
--- a/sys/ufs/ufs/ufs_quota2.c Tue Jun 07 14:53:03 2011 +0000
+++ b/sys/ufs/ufs/ufs_quota2.c Tue Jun 07 14:56:12 2011 +0000
@@ -1,9 +1,7 @@
-/* $NetBSD: ufs_quota2.c,v 1.3 2011/03/24 17:05:46 bouyer Exp $ */
+/* $NetBSD: ufs_quota2.c,v 1.4 2011/06/07 14:56:13 bouyer Exp $ */
/*-
* Copyright (c) 2010 Manuel Bouyer
* All rights reserved.
- * This software is distributed under the following condiions
- * compliant with the NetBSD foundation policy.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -28,7 +26,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ufs_quota2.c,v 1.3 2011/03/24 17:05:46 bouyer Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ufs_quota2.c,v 1.4 2011/06/07 14:56:13 bouyer Exp $");
#include <sys/buf.h>
#include <sys/param.h>
diff -r d7e39cce27c2 -r 164130074107 usr.bin/quota/getvfsquota.c
--- a/usr.bin/quota/getvfsquota.c Tue Jun 07 14:53:03 2011 +0000
+++ b/usr.bin/quota/getvfsquota.c Tue Jun 07 14:56:12 2011 +0000
@@ -1,10 +1,8 @@
-/* $NetBSD: getvfsquota.c,v 1.6 2011/03/24 17:05:46 bouyer Exp $ */
+/* $NetBSD: getvfsquota.c,v 1.7 2011/06/07 14:56:13 bouyer Exp $ */
/*-
* Copyright (c) 2011 Manuel Bouyer
* All rights reserved.
- * This software is distributed under the following condiions
- * compliant with the NetBSD foundation policy.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -29,7 +27,7 @@
*/
#include <sys/cdefs.h>
-__RCSID("$NetBSD: getvfsquota.c,v 1.6 2011/03/24 17:05:46 bouyer Exp $");
+__RCSID("$NetBSD: getvfsquota.c,v 1.7 2011/06/07 14:56:13 bouyer Exp $");
#include <stdio.h>
#include <stdlib.h>
diff -r d7e39cce27c2 -r 164130074107 usr.sbin/quotactl/quotactl.c
--- a/usr.sbin/quotactl/quotactl.c Tue Jun 07 14:53:03 2011 +0000
+++ b/usr.sbin/quotactl/quotactl.c Tue Jun 07 14:56:12 2011 +0000
@@ -1,9 +1,7 @@
-/* $NetBSD: quotactl.c,v 1.3 2011/03/24 17:05:47 bouyer Exp $ */
+/* $NetBSD: quotactl.c,v 1.4 2011/06/07 14:56:13 bouyer Exp $ */
/*-
* Copyright (c) 2011 Manuel Bouyer
* All rights reserved.
- * This software is distributed under the following condiions
- * compliant with the NetBSD foundation policy.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -29,7 +27,7 @@
#include <sys/cdefs.h>
#ifndef lint
-__RCSID("$NetBSD: quotactl.c,v 1.3 2011/03/24 17:05:47 bouyer Exp $");
+__RCSID("$NetBSD: quotactl.c,v 1.4 2011/06/07 14:56:13 bouyer Exp $");
#endif /* not lint */
/*
Home |
Main Index |
Thread Index |
Old Index