Date: Sat, 16 May 2009 22:26:23 +0200 From: Pav Lucistnik <pav@FreeBSD.org> To: Norikatsu Shigemura <nork@FreeBSD.org> Cc: cvs-ports@FreeBSD.org, Denis Barov <dindin@dindin.ru>, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/security/openssh-portable Makefile distinfo ports/security/openssh-portable/files openssh-5.2p1-hpn-servconf.patch openssh-5.2p1-hpn.patch openssh-lpk+hpn-servconf.patch openssh-lpk-5.0p1-0.3.9-servconv.patch openssh-lpk-5.0p1-0.3.9.patch Message-ID: <1242505583.1105.3.camel@hood.oook.cz> In-Reply-To: <20090517015707.706c81c6.nork@FreeBSD.org> References: <200905151100.n4FB0SAb089054@repoman.freebsd.org> <20090517015707.706c81c6.nork@FreeBSD.org>
next in thread | previous in thread | raw e-mail | index | archive | help
--=-8ZhIOmemutbygvWn6zHy Content-Type: text/plain; charset="ISO-8859-2" Content-Transfer-Encoding: quoted-printable nork, please commit it yourself when ready. PS are your mails to Denis getting back bounced too? Norikatsu Shigemura p=ED=B9e v ne 17. 05. 2009 v 01:57 +0900: > Hi Pav and Denis! >=20 > On Fri, 15 May 2009 11:00:28 +0000 (UTC) > Pav Lucistnik <pav@FreeBSD.org> wrote: > > pav 2009-05-15 11:00:28 UTC > > FreeBSD ports repository > > Modified files: > > security/openssh-portable Makefile distinfo=20 > > security/openssh-portable/files openssh-lpk-5.0p1-0.3.9.patch=20 > > Added files: > > security/openssh-portable/files=20 > > openssh-5.2p1-hpn-servconf.patch=20 > > openssh-5.2p1-hpn.patch=20 >=20 > openssh-5.2p1-hpn.patch has a critical bug by using aes*-ctr. > Would you please commit following patch? >=20 > Index: Makefile > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > RCS file: /home/ncvs/ports/security/openssh-portable/Makefile,v > retrieving revision 1.134 > diff -u -r1.134 Makefile > --- Makefile 15 May 2009 11:00:27 -0000 1.134 > +++ Makefile 16 May 2009 16:51:03 -0000 > @@ -7,6 +7,7 @@ > =20 > PORTNAME=3D openssh > DISTVERSION=3D 5.2p1 > +PORTREVISION=3D 1 > PORTEPOCH=3D 1 > CATEGORIES=3D security ipv6 > .if defined(OPENSSH_SNAPSHOT) > Index: files/openssh-5.2p1-hpn.patch > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > RCS file: /home/ncvs/ports/security/openssh-portable/files/openssh-5.2p1-= hpn.patch,v > retrieving revision 1.1 > diff -u -r1.1 openssh-5.2p1-hpn.patch > --- files/openssh-5.2p1-hpn.patch 15 May 2009 11:00:27 -0000 1.1 > +++ files/openssh-5.2p1-hpn.patch 16 May 2009 16:48:56 -0000 > @@ -932,9 +932,9 @@ > - { "aes128-ctr", SSH_CIPHER_SSH2, 16, 16, 0, 0, evp_aes_128_ctr }, > - { "aes192-ctr", SSH_CIPHER_SSH2, 16, 24, 0, 0, evp_aes_128_ctr }, > - { "aes256-ctr", SSH_CIPHER_SSH2, 16, 32, 0, 0, evp_aes_128_ctr }, > -+ { "aes128-ctr", SSH_CIPHER_SSH2, 16, 16, 0, evp_aes_ctr_mt }, > -+ { "aes192-ctr", SSH_CIPHER_SSH2, 16, 24, 0, evp_aes_ctr_mt }, > -+ { "aes256-ctr", SSH_CIPHER_SSH2, 16, 32, 0, evp_aes_ctr_mt }, > ++ { "aes128-ctr", SSH_CIPHER_SSH2, 16, 16, 0, 0, evp_aes_ctr_mt }, > ++ { "aes192-ctr", SSH_CIPHER_SSH2, 16, 24, 0, 0, evp_aes_ctr_mt }, > ++ { "aes256-ctr", SSH_CIPHER_SSH2, 16, 32, 0, 0, evp_aes_ctr_mt }, > #ifdef USE_CIPHER_ACSS > { "acss@openssh.org", SSH_CIPHER_SSH2, 16, 5, 0, 0, EVP_acss }, > #endif >=20 >=20 > > openssh-lpk+hpn-servconf.patch=20 > > openssh-lpk-5.0p1-0.3.9-servconv.pa= tch=20 > > Log: > > - Update to 5.2p1 > > - Assign maintainership to the submitter > > PR: ports/134160 > > Submitted by: Denis Barov <dindin@dindin.ru> > > Revision Changes Path > > 1.134 +21 -13 ports/security/openssh-portable/Makefile > > 1.50 +6 -9 ports/security/openssh-portable/distinfo > > 1.1 +32 -0 ports/security/openssh-portable/files/openssh-5.= 2p1-hpn-servconf.patch (new) > > 1.1 +2196 -0 ports/security/openssh-portable/files/openssh-5.= 2p1-hpn.patch (new) > > 1.1 +240 -0 ports/security/openssh-portable/files/openssh-lp= k+hpn-servconf.patch (new) > > 1.1 +222 -0 ports/security/openssh-portable/files/openssh-lp= k-5.0p1-0.3.9-servconv.patch (new) > > 1.2 +23 -236 ports/security/openssh-portable/files/openssh-lp= k-5.0p1-0.3.9.patch >=20 --=20 Pav Lucistnik <pav@oook.cz> <pav@FreeBSD.org> Pain clots and unformed lice pat this train. --=-8ZhIOmemutbygvWn6zHy Content-Type: application/pgp-signature; name="signature.asc" Content-Description: Toto je =?UTF-8?Q?digit=C3=A1ln=C4=9B?= =?ISO-8859-1?Q?_podepsan=E1?= =?UTF-8?Q?_=C4=8D=C3=A1st?= =?ISO-8859-1?Q?_zpr=E1vy?= -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (FreeBSD) iEYEABECAAYFAkoPIW8ACgkQntdYP8FOsoJLOACgmhVDaNeTA9JbU8Y/79Ir4M36 pwgAoIA/71Yxy2RKi5Esgu/9ad20X/1U =7C+J -----END PGP SIGNATURE----- --=-8ZhIOmemutbygvWn6zHy--
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?1242505583.1105.3.camel>