svn commit: r263691 - in head/crypto/openssh: . contrib openbsd-compat

Dag-Erling Smørgrav des at FreeBSD.org
Mon Mar 24 19:15:21 UTC 2014


Author: des
Date: Mon Mar 24 19:15:13 2014
New Revision: 263691
URL: http://svnweb.freebsd.org/changeset/base/263691

Log:
  Add a pre-merge script which reverts mechanical changes such as added
  $FreeBSD$ tags and man page dates.
  
  Add a post-merge script which reapplies these changes.
  
  Run both scripts to normalize the existing code base.  As a result, many
  files which should have had $FreeBSD$ tags but didn't now have them.
  
  Partly rewrite the upgrade instructions and remove the now outdated
  list of tricks.

Added:
  head/crypto/openssh/freebsd-post-merge.sh   (contents, props changed)
  head/crypto/openssh/freebsd-pre-merge.sh   (contents, props changed)
Deleted:
  head/crypto/openssh/FREEBSD-tricks
Modified:
  head/crypto/openssh/FREEBSD-upgrade
  head/crypto/openssh/auth.c
  head/crypto/openssh/auth2.c
  head/crypto/openssh/buffer.c
  head/crypto/openssh/channels.c
  head/crypto/openssh/cipher.c
  head/crypto/openssh/clientloop.c
  head/crypto/openssh/compat.c
  head/crypto/openssh/contrib/ssh-copy-id.1   (contents, props changed)
  head/crypto/openssh/kex.c
  head/crypto/openssh/misc.c
  head/crypto/openssh/moduli.5   (contents, props changed)
  head/crypto/openssh/mux.c   (contents, props changed)
  head/crypto/openssh/openbsd-compat/blowfish.c   (contents, props changed)
  head/crypto/openssh/openbsd-compat/bsd-misc.h   (contents, props changed)
  head/crypto/openssh/packet.c
  head/crypto/openssh/pathnames.h   (contents, props changed)
  head/crypto/openssh/sandbox-capsicum.c   (contents, props changed)
  head/crypto/openssh/schnorr.c
  head/crypto/openssh/scp.1   (contents, props changed)
  head/crypto/openssh/serverloop.c
  head/crypto/openssh/sftp-common.c   (contents, props changed)
  head/crypto/openssh/sftp.c
  head/crypto/openssh/ssh-add.1   (contents, props changed)
  head/crypto/openssh/ssh-agent.c
  head/crypto/openssh/ssh-gss.h   (contents, props changed)
  head/crypto/openssh/ssh-keysign.8   (contents, props changed)
  head/crypto/openssh/ssh-pkcs11-helper.8   (contents, props changed)
  head/crypto/openssh/sshconnect.c
  head/crypto/openssh/sshconnect2.c

Modified: head/crypto/openssh/FREEBSD-upgrade
==============================================================================
--- head/crypto/openssh/FREEBSD-upgrade	Mon Mar 24 18:13:41 2014	(r263690)
+++ head/crypto/openssh/FREEBSD-upgrade	Mon Mar 24 19:15:13 2014	(r263691)
@@ -3,81 +3,97 @@
 	    FreeBSD maintainer's guide to OpenSSH-portable
 	    ==============================================
 
-XXX
-XXX this needs a complete rewrite
-XXX svn merge from vendor branch, resolve conflicts manually
-XXX   (see FREEBSD-tricks for tips on how to reduce conflicts)
-XXX run freebsd-configure.sh to generate config.h and krb5_config.h
-XXX svn diff Makefile.in to see if the Makefiles need adjusting
-XXX
+00) Make sure your mail spool has plenty of free space.  It'll fill up
+    pretty fast once you're done with this checklist.
 
-0) Make sure your mail spool has plenty of free space.  It'll fill up
-   pretty fast once you're done with this checklist.
+01) Download the latest OpenSSH-portable tarball and signature from
+    OpenBSD (ftp://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/).
 
-1) Grab the latest OpenSSH-portable tarball from the OpenBSD FTP
-   site (ftp://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/)
+02) Verify the signature:
 
-2) Unpack the tarball in a suitable directory.
+    $ gpg --verify openssh-X.YpZ.tar.gz.asc
 
-	$ tar xf openssh-X.YpZ.tar.gz \
-		-X /usr/src/crypto/openssh/FREEBSD-Xlist
+03) Unpack the tarball in a suitable directory:
 
-3) Remove trash:
+    $ tar xf openssh-X.YpZ.tar.gz
 
-   Make sure -X took care of everything, and if it didn't, make sure
-   to update FREEBSD-Xlist so you won't miss it the next time.  A good
-   way to do this is to run a test import and see if any new files
-   show up:
+04) Copy to the vendor directory:
 
-	$ cvs -n import src/crypto/openssh OPENSSH x | grep \^N
+    $ svn co svn+ssh://svn.freebsd.org/base/vendor-crypto/openssh/dist
+    $ rsync --archive --delete openssh-X.YpZ/ dist/
 
-4) Import the sources:
+05) Take care of added / deleted files:
 
-	$ cvs import src/crypto/openssh OPENSSH OpenSSH_X_YpZ
+    $ svn rm $(svn stat dist | awk '$1 == "!" { print $2 }')
+    $ svn add --no-auto-props $(svn stat dist | awk '$1 == "?" { print $2 }')
 
-5) Resolve conflicts.  Remember to bump the version number and
-   addendum in version.h, and update the default value in
-   ssh{,d}_config and ssh{,d}_config.5.
+06) Commit:
 
-6) Generate configure and config.h.in:
+    $ svn commit -m "Vendor import of OpenSSH X.YpZ." dist
 
-	$ autoconf
-	$ autoheader
+07) Tag:
 
-   Note: this requires a recent version of autoconf, not autoconf213.
+    $ svn copy -m "Tag OpenSSH X.YpZ." \
+        svn+ssh://svn.freebsd.org/base/vendor-crypto/openssh/dist \
+        svn+ssh://svn.freebsd.org/base/vendor-crypto/openssh/X.YpZ
 
-7) Run configure with the appropriate arguments:
+08) Check out head and run the pre-merge script:
 
-	$ ./configure --prefix=/usr --sysconfdir=/etc/ssh \
-		--with-pam --with-tcp-wrappers --with-libedit \
-		--with-ssl-engine
+    $ svn co svn+ssh://svn.freebsd.org/base/head
+    $ cd head/crypto/openssh
+    $ sh freebsd-pre-merge.sh
 
-   This will regenerate config.h, which must be committed along with
-   the rest.
+09) Merge from the vendor branch:
 
-   Note that we don't want to configure OpenSSH for Kerberos using
-   configure since we have to be able to turn it on or off depending
-   on the value of MK_KERBEROS.  Our Makefiles take care of this.
+    $ svn merge -cNNNNNN \^/vendor-crypto/openssh/dist .
 
-8) If source files have been added or removed, update the appropriate
-   makefiles to reflect changes in the vendor's Makefile.in.
+0A) Resolve conflicts.  Remember to bump the version addendum in
+    version.h, and update the default value in ssh{,d}_config and
+    ssh{,d}_config.5.
 
-9) Build libssh.  Follow the instructions in ssh_namespace.h to get a
-   list of new symbols.  Update ssh_namespace.h, build everything,
-   install and test.
+0B) Diff against the vendor branch:
 
-A) Build and test the pam_ssh PAM module.  It gropes around libssh's
-   internals and will break if something significant changes or if
-   ssh_namespace.h is out of whack.
+    $ svn diff \^/vendor-crypto/openssh/dist .
 
-B) Re-commit everything on repoman (you *did* use a test repo for
-   this, didn't you?)
+    Files that have modifications relative to the vendor code, and
+    only those files, must have the svn:keywords property set to
+    FreeBSD=%H and be listed in the 'keywords' file created by the
+    pre-merge script.
+
+0C) Run the post-merge script:
+
+    $ sh freebsd-post-merge.sh
+
+0D) Run the configure script:
+
+    $ sh freebsd-configure.sh
+
+0E) Check config.h very carefully.
+
+0F) If source files have been added or removed, update the appropriate
+    makefiles to reflect changes in the vendor's Makefile.in.
+
+10) Build libssh:
+
+    $ cd ../../secure/lib/libssh && make obj && make depend && make
+
+11) Follow the instructions in ssh_namespace.h to get a list of new
+    symbols, and them to ssh_namespace.h.  Keep it sorted!
+
+12) Build and install world, reboot, test.  Pay particular attention
+    to pam_ssh(8), which gropes inside libssh and will break if
+    something significant changes or if ssh_namespace.h is out of
+    whack.
+
+13) Commit, and hunker down for the inevitable storm of complaints.
 
 

 
 	  An overview of FreeBSD changes to OpenSSH-portable
 	  ==================================================
 
+XXX This section is out of date
+
 0) VersionAddendum
 
    The SSH protocol allows for a human-readable version string of up

Modified: head/crypto/openssh/auth.c
==============================================================================
--- head/crypto/openssh/auth.c	Mon Mar 24 18:13:41 2014	(r263690)
+++ head/crypto/openssh/auth.c	Mon Mar 24 19:15:13 2014	(r263691)
@@ -1,4 +1,5 @@
 /* $OpenBSD: auth.c,v 1.103 2013/05/19 02:42:42 djm Exp $ */
+/* $FreeBSD$ */
 /*
  * Copyright (c) 2000 Markus Friedl.  All rights reserved.
  *

Modified: head/crypto/openssh/auth2.c
==============================================================================
--- head/crypto/openssh/auth2.c	Mon Mar 24 18:13:41 2014	(r263690)
+++ head/crypto/openssh/auth2.c	Mon Mar 24 19:15:13 2014	(r263691)
@@ -1,4 +1,5 @@
 /* $OpenBSD: auth2.c,v 1.129 2013/05/19 02:42:42 djm Exp $ */
+/* $FreeBSD$ */
 /*
  * Copyright (c) 2000 Markus Friedl.  All rights reserved.
  *

Modified: head/crypto/openssh/buffer.c
==============================================================================
--- head/crypto/openssh/buffer.c	Mon Mar 24 18:13:41 2014	(r263690)
+++ head/crypto/openssh/buffer.c	Mon Mar 24 19:15:13 2014	(r263691)
@@ -14,6 +14,7 @@
  */
 
 #include "includes.h"
+__RCSID("$FreeBSD$");
 
 #include <sys/param.h>
 

Modified: head/crypto/openssh/channels.c
==============================================================================
--- head/crypto/openssh/channels.c	Mon Mar 24 18:13:41 2014	(r263690)
+++ head/crypto/openssh/channels.c	Mon Mar 24 19:15:13 2014	(r263691)
@@ -41,6 +41,7 @@
  */
 
 #include "includes.h"
+__RCSID("$FreeBSD$");
 
 #include <sys/types.h>
 #include <sys/ioctl.h>

Modified: head/crypto/openssh/cipher.c
==============================================================================
--- head/crypto/openssh/cipher.c	Mon Mar 24 18:13:41 2014	(r263690)
+++ head/crypto/openssh/cipher.c	Mon Mar 24 19:15:13 2014	(r263691)
@@ -37,6 +37,7 @@
  */
 
 #include "includes.h"
+__RCSID("$FreeBSD$");
 
 #include <sys/types.h>
 

Modified: head/crypto/openssh/clientloop.c
==============================================================================
--- head/crypto/openssh/clientloop.c	Mon Mar 24 18:13:41 2014	(r263690)
+++ head/crypto/openssh/clientloop.c	Mon Mar 24 19:15:13 2014	(r263691)
@@ -61,6 +61,7 @@
  */
 
 #include "includes.h"
+__RCSID("$FreeBSD$");
 
 #include <sys/types.h>
 #include <sys/ioctl.h>

Modified: head/crypto/openssh/compat.c
==============================================================================
--- head/crypto/openssh/compat.c	Mon Mar 24 18:13:41 2014	(r263690)
+++ head/crypto/openssh/compat.c	Mon Mar 24 19:15:13 2014	(r263691)
@@ -25,6 +25,7 @@
  */
 
 #include "includes.h"
+__RCSID("$FreeBSD$");
 
 #include <sys/types.h>
 

Modified: head/crypto/openssh/contrib/ssh-copy-id.1
==============================================================================
--- head/crypto/openssh/contrib/ssh-copy-id.1	Mon Mar 24 18:13:41 2014	(r263690)
+++ head/crypto/openssh/contrib/ssh-copy-id.1	Mon Mar 24 19:15:13 2014	(r263691)
@@ -21,7 +21,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT
 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
 THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 ..
-.Dd $Mdocdate: June 17 2010 $
+.Dd June 17, 2010
 .Dt SSH-COPY-ID 1
 .Os
 .Sh NAME

Added: head/crypto/openssh/freebsd-post-merge.sh
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/crypto/openssh/freebsd-post-merge.sh	Mon Mar 24 19:15:13 2014	(r263691)
@@ -0,0 +1,14 @@
+#!/bin/sh
+#
+# $FreeBSD$
+#
+
+xargs perl -n -i -e '
+	print;
+	s/\$(Id|OpenBSD): [^\$]*/\$FreeBSD/ && print;
+	m/^\#include "includes.h"/ && print "__RCSID(\"\$FreeBSD\$\");\n";
+' <keywords
+
+xargs perl -p -i -e '
+	s/^\.Dd \$Mdocdate: (\w+) (\d+) (\d+) \$$/.Dd $1 $2, $3/
+' <mdocdates

Added: head/crypto/openssh/freebsd-pre-merge.sh
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/crypto/openssh/freebsd-pre-merge.sh	Mon Mar 24 19:15:13 2014	(r263691)
@@ -0,0 +1,19 @@
+#!/bin/sh
+#
+# $FreeBSD$
+#
+
+find . -type f -name '*.[1-9ch]' | cut -c 3- | \
+while read f ; do
+	svn propget svn:keywords $f | grep -q . && echo $f
+done >keywords
+xargs perl -n -i -e '
+	$strip = $ARGV if /\$(Id|OpenBSD):.*\$/;
+	print unless ($strip eq $ARGV && /\$FreeBSD.*\$/);
+' <keywords
+
+find . -type f -name '*.[1-9]' | cut -c 3- | \
+	xargs grep -l '^\.Dd ' . >mdocdates
+xargs perl -p -i -e '
+	s/^\.Dd (\w+) (\d+), (\d+)$/.Dd \$Mdocdate: $1 $2 $3 \$/;
+' <mdocdates

Modified: head/crypto/openssh/kex.c
==============================================================================
--- head/crypto/openssh/kex.c	Mon Mar 24 18:13:41 2014	(r263690)
+++ head/crypto/openssh/kex.c	Mon Mar 24 19:15:13 2014	(r263691)
@@ -25,6 +25,7 @@
  */
 
 #include "includes.h"
+__RCSID("$FreeBSD$");
 
 #include <sys/param.h>
 

Modified: head/crypto/openssh/misc.c
==============================================================================
--- head/crypto/openssh/misc.c	Mon Mar 24 18:13:41 2014	(r263690)
+++ head/crypto/openssh/misc.c	Mon Mar 24 19:15:13 2014	(r263691)
@@ -26,6 +26,7 @@
  */
 
 #include "includes.h"
+__RCSID("$FreeBSD$");
 
 #include <sys/types.h>
 #include <sys/ioctl.h>

Modified: head/crypto/openssh/moduli.5
==============================================================================
--- head/crypto/openssh/moduli.5	Mon Mar 24 18:13:41 2014	(r263690)
+++ head/crypto/openssh/moduli.5	Mon Mar 24 19:15:13 2014	(r263691)
@@ -1,4 +1,5 @@
 .\"	$OpenBSD: moduli.5,v 1.17 2012/09/26 17:34:38 jmc Exp $
+.\"	$FreeBSD$
 .\"
 .\" Copyright (c) 2008 Damien Miller <djm at mindrot.org>
 .\"

Modified: head/crypto/openssh/mux.c
==============================================================================
--- head/crypto/openssh/mux.c	Mon Mar 24 18:13:41 2014	(r263690)
+++ head/crypto/openssh/mux.c	Mon Mar 24 19:15:13 2014	(r263691)
@@ -1,4 +1,5 @@
 /* $OpenBSD: mux.c,v 1.44 2013/07/12 00:19:58 djm Exp $ */
+/* $FreeBSD$ */
 /*
  * Copyright (c) 2002-2008 Damien Miller <djm at openbsd.org>
  *
@@ -31,6 +32,7 @@
  */
 
 #include "includes.h"
+__RCSID("$FreeBSD$");
 
 #include <sys/types.h>
 #include <sys/param.h>

Modified: head/crypto/openssh/openbsd-compat/blowfish.c
==============================================================================
--- head/crypto/openssh/openbsd-compat/blowfish.c	Mon Mar 24 18:13:41 2014	(r263690)
+++ head/crypto/openssh/openbsd-compat/blowfish.c	Mon Mar 24 19:15:13 2014	(r263691)
@@ -1,4 +1,5 @@
 /* $OpenBSD: blowfish.c,v 1.18 2004/11/02 17:23:26 hshoexer Exp $ */
+/* $FreeBSD$ */
 /*
  * Blowfish block cipher for OpenBSD
  * Copyright 1997 Niels Provos <provos at physnet.uni-hamburg.de>
@@ -40,6 +41,7 @@
  */
 
 #include "includes.h"
+__RCSID("$FreeBSD$");
 
 #if !defined(HAVE_BCRYPT_PBKDF) && (!defined(HAVE_BLOWFISH_INITSTATE) || \
     !defined(HAVE_BLOWFISH_EXPAND0STATE) || !defined(HAVE_BLF_ENC))

Modified: head/crypto/openssh/openbsd-compat/bsd-misc.h
==============================================================================
--- head/crypto/openssh/openbsd-compat/bsd-misc.h	Mon Mar 24 18:13:41 2014	(r263690)
+++ head/crypto/openssh/openbsd-compat/bsd-misc.h	Mon Mar 24 19:15:13 2014	(r263691)
@@ -1,4 +1,5 @@
 /* $Id: bsd-misc.h,v 1.25 2013/08/04 11:48:41 dtucker Exp $ */
+/* $FreeBSD$ */
 
 /*
  * Copyright (c) 1999-2004 Damien Miller <djm at mindrot.org>
@@ -20,6 +21,7 @@
 #define _BSD_MISC_H
 
 #include "includes.h"
+__RCSID("$FreeBSD$");
 
 char *ssh_get_progname(char *);
 

Modified: head/crypto/openssh/packet.c
==============================================================================
--- head/crypto/openssh/packet.c	Mon Mar 24 18:13:41 2014	(r263690)
+++ head/crypto/openssh/packet.c	Mon Mar 24 19:15:13 2014	(r263691)
@@ -1,4 +1,5 @@
 /* $OpenBSD: packet.c,v 1.191 2013/12/06 13:34:54 markus Exp $ */
+/* $FreeBSD$ */
 /*
  * Author: Tatu Ylonen <ylo at cs.hut.fi>
  * Copyright (c) 1995 Tatu Ylonen <ylo at cs.hut.fi>, Espoo, Finland
@@ -38,6 +39,7 @@
  */
 
 #include "includes.h"
+__RCSID("$FreeBSD$");
  
 #include <sys/types.h>
 #include "openbsd-compat/sys-queue.h"

Modified: head/crypto/openssh/pathnames.h
==============================================================================
--- head/crypto/openssh/pathnames.h	Mon Mar 24 18:13:41 2014	(r263690)
+++ head/crypto/openssh/pathnames.h	Mon Mar 24 19:15:13 2014	(r263691)
@@ -1,4 +1,5 @@
 /* $OpenBSD: pathnames.h,v 1.24 2013/12/06 13:39:49 markus Exp $ */
+/* $FreeBSD$ */
 
 /*
  * Author: Tatu Ylonen <ylo at cs.hut.fi>

Modified: head/crypto/openssh/sandbox-capsicum.c
==============================================================================
--- head/crypto/openssh/sandbox-capsicum.c	Mon Mar 24 18:13:41 2014	(r263690)
+++ head/crypto/openssh/sandbox-capsicum.c	Mon Mar 24 19:15:13 2014	(r263691)
@@ -15,6 +15,8 @@
  */
 
 #include "includes.h"
+__RCSID("$FreeBSD$");
+__RCSID("$FreeBSD$");
 
 #ifdef SANDBOX_CAPSICUM
 

Modified: head/crypto/openssh/schnorr.c
==============================================================================
--- head/crypto/openssh/schnorr.c	Mon Mar 24 18:13:41 2014	(r263690)
+++ head/crypto/openssh/schnorr.c	Mon Mar 24 19:15:13 2014	(r263691)
@@ -27,6 +27,7 @@
  */
 
 #include "includes.h"
+__RCSID("$FreeBSD$");
 
 #include <sys/types.h>
 

Modified: head/crypto/openssh/scp.1
==============================================================================
--- head/crypto/openssh/scp.1	Mon Mar 24 18:13:41 2014	(r263690)
+++ head/crypto/openssh/scp.1	Mon Mar 24 19:15:13 2014	(r263691)
@@ -9,6 +9,7 @@
 .\" Created: Sun May  7 00:14:37 1995 ylo
 .\"
 .\" $OpenBSD: scp.1,v 1.61 2013/10/20 09:51:26 djm Exp $
+.\" $FreeBSD$
 .\"
 .Dd October 20, 2013
 .Dt SCP 1

Modified: head/crypto/openssh/serverloop.c
==============================================================================
--- head/crypto/openssh/serverloop.c	Mon Mar 24 18:13:41 2014	(r263690)
+++ head/crypto/openssh/serverloop.c	Mon Mar 24 19:15:13 2014	(r263691)
@@ -37,6 +37,7 @@
  */
 
 #include "includes.h"
+__RCSID("$FreeBSD$");
 
 #include <sys/types.h>
 #include <sys/param.h>

Modified: head/crypto/openssh/sftp-common.c
==============================================================================
--- head/crypto/openssh/sftp-common.c	Mon Mar 24 18:13:41 2014	(r263690)
+++ head/crypto/openssh/sftp-common.c	Mon Mar 24 19:15:13 2014	(r263691)
@@ -1,4 +1,5 @@
 /* $OpenBSD: sftp-common.c,v 1.26 2014/01/09 03:26:00 guenther Exp $ */
+/* $FreeBSD$ */
 /*
  * Copyright (c) 2001 Markus Friedl.  All rights reserved.
  * Copyright (c) 2001 Damien Miller.  All rights reserved.
@@ -25,6 +26,7 @@
  */
 
 #include "includes.h"
+__RCSID("$FreeBSD$");
 
 #include <sys/types.h>
 #include <sys/stat.h>

Modified: head/crypto/openssh/sftp.c
==============================================================================
--- head/crypto/openssh/sftp.c	Mon Mar 24 18:13:41 2014	(r263690)
+++ head/crypto/openssh/sftp.c	Mon Mar 24 19:15:13 2014	(r263691)
@@ -17,6 +17,7 @@
  */
 
 #include "includes.h"
+__RCSID("$FreeBSD$");
 
 #include <sys/types.h>
 #include <sys/ioctl.h>

Modified: head/crypto/openssh/ssh-add.1
==============================================================================
--- head/crypto/openssh/ssh-add.1	Mon Mar 24 18:13:41 2014	(r263690)
+++ head/crypto/openssh/ssh-add.1	Mon Mar 24 19:15:13 2014	(r263691)
@@ -1,4 +1,5 @@
 .\"	$OpenBSD: ssh-add.1,v 1.59 2013/12/07 11:58:46 naddy Exp $
+.\"	$FreeBSD$
 .\"
 .\" Author: Tatu Ylonen <ylo at cs.hut.fi>
 .\" Copyright (c) 1995 Tatu Ylonen <ylo at cs.hut.fi>, Espoo, Finland

Modified: head/crypto/openssh/ssh-agent.c
==============================================================================
--- head/crypto/openssh/ssh-agent.c	Mon Mar 24 18:13:41 2014	(r263690)
+++ head/crypto/openssh/ssh-agent.c	Mon Mar 24 19:15:13 2014	(r263691)
@@ -1,4 +1,5 @@
 /* $OpenBSD: ssh-agent.c,v 1.181 2013/12/19 01:19:41 djm Exp $ */
+/* $FreeBSD$ */
 /*
  * Author: Tatu Ylonen <ylo at cs.hut.fi>
  * Copyright (c) 1995 Tatu Ylonen <ylo at cs.hut.fi>, Espoo, Finland

Modified: head/crypto/openssh/ssh-gss.h
==============================================================================
--- head/crypto/openssh/ssh-gss.h	Mon Mar 24 18:13:41 2014	(r263690)
+++ head/crypto/openssh/ssh-gss.h	Mon Mar 24 19:15:13 2014	(r263691)
@@ -1,4 +1,5 @@
 /* $OpenBSD: ssh-gss.h,v 1.10 2007/06/12 08:20:00 djm Exp $ */
+/* $FreeBSD$ */
 /*
  * Copyright (c) 2001-2003 Simon Wilkinson. All rights reserved.
  *

Modified: head/crypto/openssh/ssh-keysign.8
==============================================================================
--- head/crypto/openssh/ssh-keysign.8	Mon Mar 24 18:13:41 2014	(r263690)
+++ head/crypto/openssh/ssh-keysign.8	Mon Mar 24 19:15:13 2014	(r263691)
@@ -1,4 +1,5 @@
 .\" $OpenBSD: ssh-keysign.8,v 1.14 2013/12/07 11:58:46 naddy Exp $
+.\" $FreeBSD$
 .\"
 .\" Copyright (c) 2002 Markus Friedl.  All rights reserved.
 .\"

Modified: head/crypto/openssh/ssh-pkcs11-helper.8
==============================================================================
--- head/crypto/openssh/ssh-pkcs11-helper.8	Mon Mar 24 18:13:41 2014	(r263690)
+++ head/crypto/openssh/ssh-pkcs11-helper.8	Mon Mar 24 19:15:13 2014	(r263691)
@@ -1,4 +1,5 @@
 .\" $OpenBSD: ssh-pkcs11-helper.8,v 1.4 2013/07/16 00:07:52 schwarze Exp $
+.\" $FreeBSD$
 .\"
 .\" Copyright (c) 2010 Markus Friedl.  All rights reserved.
 .\"

Modified: head/crypto/openssh/sshconnect.c
==============================================================================
--- head/crypto/openssh/sshconnect.c	Mon Mar 24 18:13:41 2014	(r263690)
+++ head/crypto/openssh/sshconnect.c	Mon Mar 24 19:15:13 2014	(r263691)
@@ -15,6 +15,7 @@
  */
 
 #include "includes.h"
+__RCSID("$FreeBSD$");
 
 #include <sys/types.h>
 #include <sys/wait.h>

Modified: head/crypto/openssh/sshconnect2.c
==============================================================================
--- head/crypto/openssh/sshconnect2.c	Mon Mar 24 18:13:41 2014	(r263690)
+++ head/crypto/openssh/sshconnect2.c	Mon Mar 24 19:15:13 2014	(r263691)
@@ -26,6 +26,7 @@
  */
 
 #include "includes.h"
+__RCSID("$FreeBSD$");
 
 #include <sys/types.h>
 #include <sys/socket.h>


More information about the svn-src-head mailing list