diff options
author | 2019-05-12 20:58:19 +0000 | |
---|---|---|
committer | 2019-05-12 20:58:19 +0000 | |
commit | d9fff4818cdd0b6127f8bb5bd5a1e1eda0afda29 (patch) | |
tree | e64c102a7c4fbd0d8079e8541d1320fb6de3e59c | |
parent | vmm: add a x86 page table walker (diff) | |
download | wireguard-openbsd-d9fff4818cdd0b6127f8bb5bd5a1e1eda0afda29.tar.xz wireguard-openbsd-d9fff4818cdd0b6127f8bb5bd5a1e1eda0afda29.zip |
add rcs ids
-rw-r--r-- | usr.bin/ftp/Makefile | 2 | ||||
-rw-r--r-- | usr.bin/ftp/cmd.c | 2 | ||||
-rw-r--r-- | usr.bin/ftp/file.c | 2 | ||||
-rw-r--r-- | usr.bin/ftp/ftp.1 | 2 | ||||
-rw-r--r-- | usr.bin/ftp/ftp.c | 2 | ||||
-rw-r--r-- | usr.bin/ftp/ftp.h | 2 | ||||
-rw-r--r-- | usr.bin/ftp/http.c | 2 | ||||
-rw-r--r-- | usr.bin/ftp/main.c | 2 | ||||
-rw-r--r-- | usr.bin/ftp/progressmeter.c | 2 | ||||
-rw-r--r-- | usr.bin/ftp/url.c | 2 | ||||
-rw-r--r-- | usr.bin/ftp/util.c | 2 |
11 files changed, 22 insertions, 0 deletions
diff --git a/usr.bin/ftp/Makefile b/usr.bin/ftp/Makefile index 2a03d827f6d..4d6ccd73649 100644 --- a/usr.bin/ftp/Makefile +++ b/usr.bin/ftp/Makefile @@ -1,3 +1,5 @@ +# $OpenBSD: Makefile,v 1.32 2019/05/12 20:58:19 jasper Exp $ + # Define SMALL to disable command line editing #CFLAGS+=-DSMALL diff --git a/usr.bin/ftp/cmd.c b/usr.bin/ftp/cmd.c index faf7949ab3b..48b3c2ab9e8 100644 --- a/usr.bin/ftp/cmd.c +++ b/usr.bin/ftp/cmd.c @@ -1,3 +1,5 @@ +/* $OpenBSD: cmd.c,v 1.2 2019/05/12 20:58:19 jasper Exp $ */ + /* * Copyright (c) 2018 Sunil Nimmagadda <sunil@openbsd.org> * diff --git a/usr.bin/ftp/file.c b/usr.bin/ftp/file.c index 7b641fc8c4c..63571e18352 100644 --- a/usr.bin/ftp/file.c +++ b/usr.bin/ftp/file.c @@ -1,3 +1,5 @@ +/* $OpenBSD: file.c,v 1.2 2019/05/12 20:58:19 jasper Exp $ */ + /* * Copyright (c) 2015 Sunil Nimmagadda <sunil@openbsd.org> * diff --git a/usr.bin/ftp/ftp.1 b/usr.bin/ftp/ftp.1 index 5fa5b019073..917fa593469 100644 --- a/usr.bin/ftp/ftp.1 +++ b/usr.bin/ftp/ftp.1 @@ -1,3 +1,5 @@ +.\" $OpenBSD: ftp.1,v 1.111 2019/05/12 20:58:19 jasper Exp $ +.\" .\" Copyright (c) 1985, 1989, 1990, 1993 .\" The Regents of the University of California. All rights reserved. .\" diff --git a/usr.bin/ftp/ftp.c b/usr.bin/ftp/ftp.c index f3f051d7be8..afb6514efd7 100644 --- a/usr.bin/ftp/ftp.c +++ b/usr.bin/ftp/ftp.c @@ -1,3 +1,5 @@ +/* $OpenBSD: ftp.c,v 1.102 2019/05/12 20:58:19 jasper Exp $ */ + /* * Copyright (c) 2015 Sunil Nimmagadda <sunil@openbsd.org> * diff --git a/usr.bin/ftp/ftp.h b/usr.bin/ftp/ftp.h index 0d5975ac6be..adc2f2b643c 100644 --- a/usr.bin/ftp/ftp.h +++ b/usr.bin/ftp/ftp.h @@ -1,3 +1,5 @@ +/* $OpenBSD: ftp.h,v 1.2 2019/05/12 20:58:19 jasper Exp $ */ + /* * Copyright (c) 2015 Sunil Nimmagadda <sunil@openbsd.org> * diff --git a/usr.bin/ftp/http.c b/usr.bin/ftp/http.c index e5c7a3c7292..f3af35e67da 100644 --- a/usr.bin/ftp/http.c +++ b/usr.bin/ftp/http.c @@ -1,3 +1,5 @@ +/* $OpenBSD: http.c,v 1.5 2019/05/12 20:58:19 jasper Exp $ */ + /* * Copyright (c) 2015 Sunil Nimmagadda <sunil@openbsd.org> * Copyright (c) 2012 - 2015 Reyk Floeter <reyk@openbsd.org> diff --git a/usr.bin/ftp/main.c b/usr.bin/ftp/main.c index 9c432c376ec..b17afb6de09 100644 --- a/usr.bin/ftp/main.c +++ b/usr.bin/ftp/main.c @@ -1,3 +1,5 @@ +/* $OpenBSD: main.c,v 1.122 2019/05/12 20:58:19 jasper Exp $ */ + /* * Copyright (c) 2015 Sunil Nimmagadda <sunil@openbsd.org> * diff --git a/usr.bin/ftp/progressmeter.c b/usr.bin/ftp/progressmeter.c index e4322e9df7a..ce1ec72320d 100644 --- a/usr.bin/ftp/progressmeter.c +++ b/usr.bin/ftp/progressmeter.c @@ -1,3 +1,5 @@ +/* $OpenBSD: progressmeter.c,v 1.2 2019/05/12 20:58:19 jasper Exp $ */ + /* * Copyright (c) 2015 Sunil Nimmagadda <sunil@openbsd.org> * Copyright (c) 2003 Nils Nordman. All rights reserved. diff --git a/usr.bin/ftp/url.c b/usr.bin/ftp/url.c index 3087aa1d834..86bbb2b590f 100644 --- a/usr.bin/ftp/url.c +++ b/usr.bin/ftp/url.c @@ -1,3 +1,5 @@ +/* $OpenBSD: url.c,v 1.2 2019/05/12 20:58:19 jasper Exp $ */ + /* * Copyright (c) 2017 Sunil Nimmagadda <sunil@openbsd.org> * diff --git a/usr.bin/ftp/util.c b/usr.bin/ftp/util.c index 7ea0ad433e0..dba5943a5b1 100644 --- a/usr.bin/ftp/util.c +++ b/usr.bin/ftp/util.c @@ -1,3 +1,5 @@ +/* $OpenBSD: util.c,v 1.88 2019/05/12 20:58:19 jasper Exp $ */ + /* * Copyright (c) 2015 Sunil Nimmagadda <sunil@openbsd.org> * |