Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/external/bsd/ppp/dist fix rcsids.
details: https://anonhg.NetBSD.org/src/rev/0bb75f1056e3
branches: trunk
changeset: 333265:0bb75f1056e3
user: christos <christos%NetBSD.org@localhost>
date: Sat Oct 25 21:11:37 2014 +0000
description:
fix rcsids.
diffstat:
external/bsd/ppp/dist/pppd/auth.c | 4 ++--
external/bsd/ppp/dist/pppd/cbcp.c | 4 ++--
external/bsd/ppp/dist/pppd/cbcp.h | 2 +-
external/bsd/ppp/dist/pppd/ccp.c | 4 ++--
external/bsd/ppp/dist/pppd/ccp.h | 2 +-
external/bsd/ppp/dist/pppd/chap-md5.c | 4 ++--
external/bsd/ppp/dist/pppd/chap-md5.h | 2 +-
external/bsd/ppp/dist/pppd/chap-new.c | 4 ++--
external/bsd/ppp/dist/pppd/chap-new.h | 2 +-
external/bsd/ppp/dist/pppd/chap_ms.c | 4 ++--
external/bsd/ppp/dist/pppd/chap_ms.h | 2 +-
external/bsd/ppp/dist/pppd/demand.c | 4 ++--
external/bsd/ppp/dist/pppd/eap.c | 4 ++--
external/bsd/ppp/dist/pppd/eap.h | 2 +-
external/bsd/ppp/dist/pppd/ecp.c | 4 ++--
external/bsd/ppp/dist/pppd/ecp.h | 2 +-
external/bsd/ppp/dist/pppd/eui64.c | 4 ++--
external/bsd/ppp/dist/pppd/eui64.h | 2 +-
external/bsd/ppp/dist/pppd/fsm.c | 4 ++--
external/bsd/ppp/dist/pppd/fsm.h | 2 +-
external/bsd/ppp/dist/pppd/ipcp.c | 4 ++--
external/bsd/ppp/dist/pppd/ipcp.h | 2 +-
external/bsd/ppp/dist/pppd/ipv6cp.c | 4 ++--
external/bsd/ppp/dist/pppd/ipv6cp.h | 2 +-
external/bsd/ppp/dist/pppd/ipxcp.c | 2 +-
external/bsd/ppp/dist/pppd/ipxcp.h | 2 +-
external/bsd/ppp/dist/pppd/lcp.c | 4 ++--
external/bsd/ppp/dist/pppd/lcp.h | 2 +-
external/bsd/ppp/dist/pppd/magic.c | 4 ++--
external/bsd/ppp/dist/pppd/magic.h | 2 +-
external/bsd/ppp/dist/pppd/mppe.h | 2 +-
external/bsd/ppp/dist/pppd/multilink.c | 4 ++--
external/bsd/ppp/dist/pppd/options.c | 4 ++--
external/bsd/ppp/dist/pppd/pathnames.h | 2 +-
external/bsd/ppp/dist/pppd/pppcrypt.c | 4 ++--
external/bsd/ppp/dist/pppd/pppcrypt.h | 2 +-
external/bsd/ppp/dist/pppd/pppd.h | 2 +-
external/bsd/ppp/dist/pppd/session.c | 4 ++--
external/bsd/ppp/dist/pppd/session.h | 2 +-
external/bsd/ppp/dist/pppd/tty.c | 4 ++--
external/bsd/ppp/dist/pppd/upap.c | 4 ++--
external/bsd/ppp/dist/pppd/upap.h | 2 +-
external/bsd/ppp/dist/pppd/utils.c | 4 ++--
external/bsd/ppp/dist/pppdump/deflate.c | 2 +-
external/bsd/ppp/dist/pppstats/pppstats.c | 4 ++--
45 files changed, 68 insertions(+), 68 deletions(-)
diffs (truncated from 618 to 300 lines):
diff -r 4c0b746a7100 -r 0bb75f1056e3 external/bsd/ppp/dist/pppd/auth.c
--- a/external/bsd/ppp/dist/pppd/auth.c Sat Oct 25 21:02:31 2014 +0000
+++ b/external/bsd/ppp/dist/pppd/auth.c Sat Oct 25 21:11:37 2014 +0000
@@ -1,4 +1,4 @@
-/* NetBSD */
+/* $NetBSD: auth.c,v 1.4 2014/10/25 21:11:37 christos Exp $ */
/*
* auth.c - PPP authentication and phase control.
@@ -75,7 +75,7 @@
#define RCSID "Id: auth.c,v 1.117 2008/07/01 12:27:56 paulus Exp "
static const char rcsid[] = RCSID;
#else
-__RCSID("NetBSD");
+__RCSID("$NetBSD: auth.c,v 1.4 2014/10/25 21:11:37 christos Exp $");
#endif
#include <stdio.h>
diff -r 4c0b746a7100 -r 0bb75f1056e3 external/bsd/ppp/dist/pppd/cbcp.c
--- a/external/bsd/ppp/dist/pppd/cbcp.c Sat Oct 25 21:02:31 2014 +0000
+++ b/external/bsd/ppp/dist/pppd/cbcp.c Sat Oct 25 21:11:37 2014 +0000
@@ -1,4 +1,4 @@
-/* NetBSD */
+/* $NetBSD: cbcp.c,v 1.4 2014/10/25 21:11:37 christos Exp $ */
/*
* cbcp - Call Back Configuration Protocol.
@@ -40,7 +40,7 @@
#define RCSID "Id: cbcp.c,v 1.17 2006/05/22 00:04:07 paulus Exp "
static const char rcsid[] = RCSID;
#else
-__RCSID("NetBSD");
+__RCSID("$NetBSD: cbcp.c,v 1.4 2014/10/25 21:11:37 christos Exp $");
#endif
#include <stdio.h>
diff -r 4c0b746a7100 -r 0bb75f1056e3 external/bsd/ppp/dist/pppd/cbcp.h
--- a/external/bsd/ppp/dist/pppd/cbcp.h Sat Oct 25 21:02:31 2014 +0000
+++ b/external/bsd/ppp/dist/pppd/cbcp.h Sat Oct 25 21:11:37 2014 +0000
@@ -1,4 +1,4 @@
-/* NetBSD */
+/* $NetBSD: cbcp.h,v 1.4 2014/10/25 21:11:37 christos Exp $ */
#ifndef CBCP_H
#define CBCP_H
diff -r 4c0b746a7100 -r 0bb75f1056e3 external/bsd/ppp/dist/pppd/ccp.c
--- a/external/bsd/ppp/dist/pppd/ccp.c Sat Oct 25 21:02:31 2014 +0000
+++ b/external/bsd/ppp/dist/pppd/ccp.c Sat Oct 25 21:11:37 2014 +0000
@@ -1,4 +1,4 @@
-/* NetBSD */
+/* $NetBSD: ccp.c,v 1.4 2014/10/25 21:11:37 christos Exp $ */
/*
* ccp.c - PPP Compression Control Protocol.
@@ -35,7 +35,7 @@
#define RCSID "Id: ccp.c,v 1.50 2005/06/26 19:34:41 carlsonj Exp "
static const char rcsid[] = RCSID;
#else
-__RCSID("NetBSD");
+__RCSID("$NetBSD: ccp.c,v 1.4 2014/10/25 21:11:37 christos Exp $");
#endif
#include <stdlib.h>
diff -r 4c0b746a7100 -r 0bb75f1056e3 external/bsd/ppp/dist/pppd/ccp.h
--- a/external/bsd/ppp/dist/pppd/ccp.h Sat Oct 25 21:02:31 2014 +0000
+++ b/external/bsd/ppp/dist/pppd/ccp.h Sat Oct 25 21:11:37 2014 +0000
@@ -1,4 +1,4 @@
-/* NetBSD */
+/* $NetBSD: ccp.h,v 1.4 2014/10/25 21:11:37 christos Exp $ */
/*
* ccp.h - Definitions for PPP Compression Control Protocol.
diff -r 4c0b746a7100 -r 0bb75f1056e3 external/bsd/ppp/dist/pppd/chap-md5.c
--- a/external/bsd/ppp/dist/pppd/chap-md5.c Sat Oct 25 21:02:31 2014 +0000
+++ b/external/bsd/ppp/dist/pppd/chap-md5.c Sat Oct 25 21:11:37 2014 +0000
@@ -1,4 +1,4 @@
-/* NetBSD */
+/* $NetBSD: chap-md5.c,v 1.4 2014/10/25 21:11:37 christos Exp $ */
/*
* chap-md5.c - New CHAP/MD5 implementation.
@@ -35,7 +35,7 @@
#define RCSID "Id: chap-md5.c,v 1.4 2004/11/09 22:39:25 paulus Exp "
static const char rcsid[] = RCSID;
#else
-__RCSID("NetBSD");
+__RCSID("$NetBSD: chap-md5.c,v 1.4 2014/10/25 21:11:37 christos Exp $");
#endif
#include <stdlib.h>
diff -r 4c0b746a7100 -r 0bb75f1056e3 external/bsd/ppp/dist/pppd/chap-md5.h
--- a/external/bsd/ppp/dist/pppd/chap-md5.h Sat Oct 25 21:02:31 2014 +0000
+++ b/external/bsd/ppp/dist/pppd/chap-md5.h Sat Oct 25 21:11:37 2014 +0000
@@ -1,4 +1,4 @@
-/* NetBSD */
+/* $NetBSD: chap-md5.h,v 1.4 2014/10/25 21:11:37 christos Exp $ */
/*
* chap-md5.h - New CHAP/MD5 implementation.
diff -r 4c0b746a7100 -r 0bb75f1056e3 external/bsd/ppp/dist/pppd/chap-new.c
--- a/external/bsd/ppp/dist/pppd/chap-new.c Sat Oct 25 21:02:31 2014 +0000
+++ b/external/bsd/ppp/dist/pppd/chap-new.c Sat Oct 25 21:11:37 2014 +0000
@@ -1,4 +1,4 @@
-/* NetBSD */
+/* $NetBSD: chap-new.c,v 1.4 2014/10/25 21:11:37 christos Exp $ */
/*
* chap-new.c - New CHAP implementation.
@@ -35,7 +35,7 @@
#define RCSID "Id: chap-new.c,v 1.9 2007/06/19 02:08:35 carlsonj Exp "
static const char rcsid[] = RCSID;
#else
-__RCSID("NetBSD");
+__RCSID("$NetBSD: chap-new.c,v 1.4 2014/10/25 21:11:37 christos Exp $");
#endif
#include <stdlib.h>
diff -r 4c0b746a7100 -r 0bb75f1056e3 external/bsd/ppp/dist/pppd/chap-new.h
--- a/external/bsd/ppp/dist/pppd/chap-new.h Sat Oct 25 21:02:31 2014 +0000
+++ b/external/bsd/ppp/dist/pppd/chap-new.h Sat Oct 25 21:11:37 2014 +0000
@@ -1,4 +1,4 @@
-/* NetBSD */
+/* $NetBSD: chap-new.h,v 1.4 2014/10/25 21:11:37 christos Exp $ */
/*
* chap-new.c - New CHAP implementation.
diff -r 4c0b746a7100 -r 0bb75f1056e3 external/bsd/ppp/dist/pppd/chap_ms.c
--- a/external/bsd/ppp/dist/pppd/chap_ms.c Sat Oct 25 21:02:31 2014 +0000
+++ b/external/bsd/ppp/dist/pppd/chap_ms.c Sat Oct 25 21:11:37 2014 +0000
@@ -1,4 +1,4 @@
-/* NetBSD */
+/* $NetBSD: chap_ms.c,v 1.4 2014/10/25 21:11:37 christos Exp $ */
/*
* chap_ms.c - Microsoft MS-CHAP compatible implementation.
@@ -81,7 +81,7 @@
#define RCSID "Id: chap_ms.c,v 1.38 2007/12/01 20:10:51 carlsonj Exp "
static const char rcsid[] = RCSID;
#else
-__RCSID("NetBSD");
+__RCSID("$NetBSD: chap_ms.c,v 1.4 2014/10/25 21:11:37 christos Exp $");
#endif
#ifdef CHAPMS
diff -r 4c0b746a7100 -r 0bb75f1056e3 external/bsd/ppp/dist/pppd/chap_ms.h
--- a/external/bsd/ppp/dist/pppd/chap_ms.h Sat Oct 25 21:02:31 2014 +0000
+++ b/external/bsd/ppp/dist/pppd/chap_ms.h Sat Oct 25 21:11:37 2014 +0000
@@ -1,4 +1,4 @@
-/* NetBSD */
+/* $NetBSD: chap_ms.h,v 1.4 2014/10/25 21:11:37 christos Exp $ */
/*
* chap_ms.h - Challenge Handshake Authentication Protocol definitions.
diff -r 4c0b746a7100 -r 0bb75f1056e3 external/bsd/ppp/dist/pppd/demand.c
--- a/external/bsd/ppp/dist/pppd/demand.c Sat Oct 25 21:02:31 2014 +0000
+++ b/external/bsd/ppp/dist/pppd/demand.c Sat Oct 25 21:11:37 2014 +0000
@@ -1,4 +1,4 @@
-/* NetBSD */
+/* $NetBSD: demand.c,v 1.4 2014/10/25 21:11:37 christos Exp $ */
/*
* demand.c - Support routines for demand-dialling.
@@ -35,7 +35,7 @@
#define RCSID "Id: demand.c,v 1.20 2005/08/25 12:14:18 paulus Exp "
static const char rcsid[] = RCSID;
#else
-__RCSID("NetBSD");
+__RCSID("$NetBSD: demand.c,v 1.4 2014/10/25 21:11:37 christos Exp $");
#endif
#include <stdio.h>
diff -r 4c0b746a7100 -r 0bb75f1056e3 external/bsd/ppp/dist/pppd/eap.c
--- a/external/bsd/ppp/dist/pppd/eap.c Sat Oct 25 21:02:31 2014 +0000
+++ b/external/bsd/ppp/dist/pppd/eap.c Sat Oct 25 21:11:37 2014 +0000
@@ -1,4 +1,4 @@
-/* NetBSD */
+/* $NetBSD: eap.c,v 1.4 2014/10/25 21:11:37 christos Exp $ */
/*
* eap.c - Extensible Authentication Protocol for PPP (RFC 2284)
*
@@ -49,7 +49,7 @@
#define RCSID "Id: eap.c,v 1.4 2004/11/09 22:39:25 paulus Exp "
static const char rcsid[] = RCSID;
#else
-__RCSID("NetBSD");
+__RCSID("$NetBSD: eap.c,v 1.4 2014/10/25 21:11:37 christos Exp $");
#endif
/*
diff -r 4c0b746a7100 -r 0bb75f1056e3 external/bsd/ppp/dist/pppd/eap.h
--- a/external/bsd/ppp/dist/pppd/eap.h Sat Oct 25 21:02:31 2014 +0000
+++ b/external/bsd/ppp/dist/pppd/eap.h Sat Oct 25 21:11:37 2014 +0000
@@ -1,4 +1,4 @@
-/* NetBSD */
+/* $NetBSD: eap.h,v 1.4 2014/10/25 21:11:37 christos Exp $ */
/*
* eap.h - Extensible Authentication Protocol for PPP (RFC 2284)
diff -r 4c0b746a7100 -r 0bb75f1056e3 external/bsd/ppp/dist/pppd/ecp.c
--- a/external/bsd/ppp/dist/pppd/ecp.c Sat Oct 25 21:02:31 2014 +0000
+++ b/external/bsd/ppp/dist/pppd/ecp.c Sat Oct 25 21:11:37 2014 +0000
@@ -1,4 +1,4 @@
-/* NetBSD */
+/* $NetBSD: ecp.c,v 1.4 2014/10/25 21:11:37 christos Exp $ */
/*
* ecp.c - PPP Encryption Control Protocol.
@@ -64,7 +64,7 @@
#define RCSID "Id: ecp.c,v 1.4 2004/11/04 10:02:26 paulus Exp "
static const char rcsid[] = RCSID;
#else
-__RCSID("NetBSD");
+__RCSID("$NetBSD: ecp.c,v 1.4 2014/10/25 21:11:37 christos Exp $");
#endif
#include <string.h>
diff -r 4c0b746a7100 -r 0bb75f1056e3 external/bsd/ppp/dist/pppd/ecp.h
--- a/external/bsd/ppp/dist/pppd/ecp.h Sat Oct 25 21:02:31 2014 +0000
+++ b/external/bsd/ppp/dist/pppd/ecp.h Sat Oct 25 21:11:37 2014 +0000
@@ -1,4 +1,4 @@
-/* NetBSD */
+/* $NetBSD: ecp.h,v 1.4 2014/10/25 21:11:37 christos Exp $ */
/*
* ecp.h - Definitions for PPP Encryption Control Protocol.
diff -r 4c0b746a7100 -r 0bb75f1056e3 external/bsd/ppp/dist/pppd/eui64.c
--- a/external/bsd/ppp/dist/pppd/eui64.c Sat Oct 25 21:02:31 2014 +0000
+++ b/external/bsd/ppp/dist/pppd/eui64.c Sat Oct 25 21:11:37 2014 +0000
@@ -1,4 +1,4 @@
-/* NetBSD */
+/* $NetBSD: eui64.c,v 1.4 2014/10/25 21:11:37 christos Exp $ */
/*
* eui64.c - EUI64 routines for IPv6CP.
@@ -42,7 +42,7 @@
#define RCSID "Id: eui64.c,v 1.6 2002/12/04 23:03:32 paulus Exp "
static const char rcsid[] = RCSID;
#else
-__RCSID("NetBSD");
+__RCSID("$NetBSD: eui64.c,v 1.4 2014/10/25 21:11:37 christos Exp $");
#endif
#include "pppd.h"
diff -r 4c0b746a7100 -r 0bb75f1056e3 external/bsd/ppp/dist/pppd/eui64.h
--- a/external/bsd/ppp/dist/pppd/eui64.h Sat Oct 25 21:02:31 2014 +0000
+++ b/external/bsd/ppp/dist/pppd/eui64.h Sat Oct 25 21:11:37 2014 +0000
@@ -1,4 +1,4 @@
-/* NetBSD */
+/* $NetBSD: eui64.h,v 1.4 2014/10/25 21:11:37 christos Exp $ */
/*
* eui64.h - EUI64 routines for IPv6CP.
diff -r 4c0b746a7100 -r 0bb75f1056e3 external/bsd/ppp/dist/pppd/fsm.c
--- a/external/bsd/ppp/dist/pppd/fsm.c Sat Oct 25 21:02:31 2014 +0000
+++ b/external/bsd/ppp/dist/pppd/fsm.c Sat Oct 25 21:11:37 2014 +0000
@@ -1,4 +1,4 @@
-/* NetBSD */
+/* $NetBSD: fsm.c,v 1.4 2014/10/25 21:11:37 christos Exp $ */
/*
* fsm.c - {Link, IP} Control Protocol Finite State Machine.
@@ -47,7 +47,7 @@
#define RCSID "Id: fsm.c,v 1.23 2004/11/13 02:28:15 paulus Exp "
static const char rcsid[] = RCSID;
#else
-__RCSID("NetBSD");
+__RCSID("$NetBSD: fsm.c,v 1.4 2014/10/25 21:11:37 christos Exp $");
#endif
/*
diff -r 4c0b746a7100 -r 0bb75f1056e3 external/bsd/ppp/dist/pppd/fsm.h
--- a/external/bsd/ppp/dist/pppd/fsm.h Sat Oct 25 21:02:31 2014 +0000
+++ b/external/bsd/ppp/dist/pppd/fsm.h Sat Oct 25 21:11:37 2014 +0000
@@ -1,4 +1,4 @@
-/* NetBSD */
+/* $NetBSD: fsm.h,v 1.4 2014/10/25 21:11:37 christos Exp $ */
/*
* fsm.h - {Link, IP} Control Protocol Finite State Machine definitions.
diff -r 4c0b746a7100 -r 0bb75f1056e3 external/bsd/ppp/dist/pppd/ipcp.c
--- a/external/bsd/ppp/dist/pppd/ipcp.c Sat Oct 25 21:02:31 2014 +0000
+++ b/external/bsd/ppp/dist/pppd/ipcp.c Sat Oct 25 21:11:37 2014 +0000
@@ -1,4 +1,4 @@
-/* NetBSD */
+/* $NetBSD: ipcp.c,v 1.4 2014/10/25 21:11:37 christos Exp $ */
/*
* ipcp.c - PPP IP Control Protocol.
@@ -47,7 +47,7 @@
#define RCSID "Id: ipcp.c,v 1.73 2008/05/26 08:33:22 paulus Exp "
static const char rcsid[] = RCSID;
#else
-__RCSID("NetBSD");
+__RCSID("$NetBSD: ipcp.c,v 1.4 2014/10/25 21:11:37 christos Exp $");
#endif
/*
diff -r 4c0b746a7100 -r 0bb75f1056e3 external/bsd/ppp/dist/pppd/ipcp.h
--- a/external/bsd/ppp/dist/pppd/ipcp.h Sat Oct 25 21:02:31 2014 +0000
+++ b/external/bsd/ppp/dist/pppd/ipcp.h Sat Oct 25 21:11:37 2014 +0000
Home |
Main Index |
Thread Index |
Old Index