Login | Register For Free | Help
Search for: (Advanced)

Mailing List Archive: OpenSSH: Commits

CVS: fuyu.mindrot.org: openssh

 

 

First page Previous page 1 2 3 Next page Last page  View All OpenSSH commits RSS feed   Index | Next | Previous | View Threaded


djm at fuyu

Aug 5, 2011, 1:15 PM

Post #1 of 70 (1422 views)
Permalink
CVS: fuyu.mindrot.org: openssh

CVSROOT: /var/cvs
Module name: openssh
Changes by: djm [at] fuyu 11/08/06 06:15:19

Modified files:
. : ChangeLog Makefile.in monitor.c

Log message:
- djm [at] cvs 2011/06/23 23:35:42
[monitor.c]
ignore EINTR errors from poll()

Diff commands:
cvs -nQq rdiff -u -r1.5913 -r1.5914 openssh/ChangeLog
cvs -nQq rdiff -u -r1.324 -r1.325 openssh/Makefile.in
cvs -nQq rdiff -u -r1.149 -r1.150 openssh/monitor.c

ViewVC:
http://anoncvs.mindrot.org/index.cgi/openssh/ChangeLog?r1=1.5913;r2=1.5914&view=patch
http://anoncvs.mindrot.org/index.cgi/openssh/Makefile.in?r1=1.324;r2=1.325&view=patch
http://anoncvs.mindrot.org/index.cgi/openssh/monitor.c?r1=1.149;r2=1.150&view=patch

Please note that there may be a delay before commits are available
on the public ViewVC site.
_______________________________________________
openssh-commits mailing list
openssh-commits [at] mindrot
https://lists.mindrot.org/mailman/listinfo/openssh-commits


djm at fuyu

Aug 5, 2011, 1:16 PM

Post #2 of 70 (1395 views)
Permalink
CVS: fuyu.mindrot.org: openssh [In reply to]

CVSROOT: /var/cvs
Module name: openssh
Changes by: djm [at] fuyu 11/08/06 06:16:02

Modified files:
. : ChangeLog authfd.c

Log message:
- tedu [at] cvs 2011/07/06 18:09:21
[authfd.c]
bzero the agent address. the kernel was for a while very cranky about
these things. evne though that's fixed, always good to initialize
memory. ok deraadt djm

Diff commands:
cvs -nQq rdiff -u -r1.5914 -r1.5915 openssh/ChangeLog
cvs -nQq rdiff -u -r1.82 -r1.83 openssh/authfd.c

ViewVC:
http://anoncvs.mindrot.org/index.cgi/openssh/ChangeLog?r1=1.5914;r2=1.5915&view=patch
http://anoncvs.mindrot.org/index.cgi/openssh/authfd.c?r1=1.82;r2=1.83&view=patch

Please note that there may be a delay before commits are available
on the public ViewVC site.
_______________________________________________
openssh-commits mailing list
openssh-commits [at] mindrot
https://lists.mindrot.org/mailman/listinfo/openssh-commits


djm at fuyu

Aug 5, 2011, 1:16 PM

Post #3 of 70 (1396 views)
Permalink
CVS: fuyu.mindrot.org: openssh [In reply to]

CVSROOT: /var/cvs
Module name: openssh
Changes by: djm [at] fuyu 11/08/06 06:16:23

Modified files:
. : ChangeLog sandbox-systrace.c

Log message:
- djm [at] cvs 2011/07/29 14:42:45
[sandbox-systrace.c]
fail open(2) with EPERM rather than SIGKILLing the whole process. libc
will call open() to do strerror() when NLS is enabled;
feedback and ok markus@

Diff commands:
cvs -nQq rdiff -u -r1.5915 -r1.5916 openssh/ChangeLog
cvs -nQq rdiff -u -r1.2 -r1.3 openssh/sandbox-systrace.c

ViewVC:
http://anoncvs.mindrot.org/index.cgi/openssh/ChangeLog?r1=1.5915;r2=1.5916&view=patch
http://anoncvs.mindrot.org/index.cgi/openssh/sandbox-systrace.c?r1=1.2;r2=1.3&view=patch

Please note that there may be a delay before commits are available
on the public ViewVC site.
_______________________________________________
openssh-commits mailing list
openssh-commits [at] mindrot
https://lists.mindrot.org/mailman/listinfo/openssh-commits


djm at fuyu

Aug 5, 2011, 1:16 PM

Post #4 of 70 (1387 views)
Permalink
CVS: fuyu.mindrot.org: openssh [In reply to]

CVSROOT: /var/cvs
Module name: openssh
Changes by: djm [at] fuyu 11/08/06 06:16:47

Modified files:
. : ChangeLog gss-serv.c

Log message:
- markus [at] cvs 2011/08/01 19:18:15
[gss-serv.c]
prevent post-auth resource exhaustion (int overflow leading to 4GB malloc);
report Adam Zabrock; ok djm@, deraadt@

Diff commands:
cvs -nQq rdiff -u -r1.5916 -r1.5917 openssh/ChangeLog
cvs -nQq rdiff -u -r1.24 -r1.25 openssh/gss-serv.c

ViewVC:
http://anoncvs.mindrot.org/index.cgi/openssh/ChangeLog?r1=1.5916;r2=1.5917&view=patch
http://anoncvs.mindrot.org/index.cgi/openssh/gss-serv.c?r1=1.24;r2=1.25&view=patch

Please note that there may be a delay before commits are available
on the public ViewVC site.
_______________________________________________
openssh-commits mailing list
openssh-commits [at] mindrot
https://lists.mindrot.org/mailman/listinfo/openssh-commits


djm at fuyu

Aug 5, 2011, 1:17 PM

Post #5 of 70 (1393 views)
Permalink
CVS: fuyu.mindrot.org: openssh [In reply to]

CVSROOT: /var/cvs
Module name: openssh
Changes by: djm [at] fuyu 11/08/06 06:17:33

Modified files:
. : ChangeLog mac.c myproposal.h ssh.1 ssh_config.5 sshd.8 sshd_config.5

Log message:
- djm [at] cvs 2011/08/02 01:22:11
[mac.c myproposal.h ssh.1 ssh_config.5 sshd.8 sshd_config.5]
Add new SHA256 and SHA512 based HMAC modes from
http://www.ietf.org/id/draft-dbider-sha2-mac-for-ssh-02.txt
Patch from mdb AT juniper.net; feedback and ok markus@

Diff commands:
cvs -nQq rdiff -u -r1.5917 -r1.5918 openssh/ChangeLog
cvs -nQq rdiff -u -r1.16 -r1.17 openssh/mac.c
cvs -nQq rdiff -u -r1.29 -r1.30 openssh/myproposal.h
cvs -nQq rdiff -u -r1.278 -r1.279 openssh/ssh.1
cvs -nQq rdiff -u -r1.152 -r1.153 openssh/ssh_config.5
cvs -nQq rdiff -u -r1.223 -r1.224 openssh/sshd.8
cvs -nQq rdiff -u -r1.141 -r1.142 openssh/sshd_config.5

ViewVC:
http://anoncvs.mindrot.org/index.cgi/openssh/ChangeLog?r1=1.5917;r2=1.5918&view=patch
http://anoncvs.mindrot.org/index.cgi/openssh/mac.c?r1=1.16;r2=1.17&view=patch
http://anoncvs.mindrot.org/index.cgi/openssh/myproposal.h?r1=1.29;r2=1.30&view=patch
http://anoncvs.mindrot.org/index.cgi/openssh/ssh.1?r1=1.278;r2=1.279&view=patch
http://anoncvs.mindrot.org/index.cgi/openssh/ssh_config.5?r1=1.152;r2=1.153&view=patch
http://anoncvs.mindrot.org/index.cgi/openssh/sshd.8?r1=1.223;r2=1.224&view=patch
http://anoncvs.mindrot.org/index.cgi/openssh/sshd_config.5?r1=1.141;r2=1.142&view=patch

Please note that there may be a delay before commits are available
on the public ViewVC site.
_______________________________________________
openssh-commits mailing list
openssh-commits [at] mindrot
https://lists.mindrot.org/mailman/listinfo/openssh-commits


djm at fuyu

Aug 5, 2011, 1:17 PM

Post #6 of 70 (1395 views)
Permalink
CVS: fuyu.mindrot.org: openssh [In reply to]

CVSROOT: /var/cvs
Module name: openssh
Changes by: djm [at] fuyu 11/08/06 06:17:50

Modified files:
. : ChangeLog version.h

Log message:
- djm [at] cvs 2011/08/02 23:13:01
[version.h]
crank now, release later

Diff commands:
cvs -nQq rdiff -u -r1.5918 -r1.5919 openssh/ChangeLog
cvs -nQq rdiff -u -r1.72 -r1.73 openssh/version.h

ViewVC:
http://anoncvs.mindrot.org/index.cgi/openssh/ChangeLog?r1=1.5918;r2=1.5919&view=patch
http://anoncvs.mindrot.org/index.cgi/openssh/version.h?r1=1.72;r2=1.73&view=patch

Please note that there may be a delay before commits are available
on the public ViewVC site.
_______________________________________________
openssh-commits mailing list
openssh-commits [at] mindrot
https://lists.mindrot.org/mailman/listinfo/openssh-commits


djm at fuyu

Aug 5, 2011, 1:18 PM

Post #7 of 70 (1393 views)
Permalink
CVS: fuyu.mindrot.org: openssh [In reply to]

CVSROOT: /var/cvs
Module name: openssh
Changes by: djm [at] fuyu 11/08/06 06:18:19

Modified files:
. : ChangeLog ssh.c

Log message:
- djm [at] cvs 2011/08/02 23:15:03
[ssh.c]
typo in comment

Diff commands:
cvs -nQq rdiff -u -r1.5919 -r1.5920 openssh/ChangeLog
cvs -nQq rdiff -u -r1.359 -r1.360 openssh/ssh.c

ViewVC:
http://anoncvs.mindrot.org/index.cgi/openssh/ChangeLog?r1=1.5919;r2=1.5920&view=patch
http://anoncvs.mindrot.org/index.cgi/openssh/ssh.c?r1=1.359;r2=1.360&view=patch

Please note that there may be a delay before commits are available
on the public ViewVC site.
_______________________________________________
openssh-commits mailing list
openssh-commits [at] mindrot
https://lists.mindrot.org/mailman/listinfo/openssh-commits


dtucker at fuyu

Aug 7, 2011, 6:09 AM

Post #8 of 70 (1387 views)
Permalink
CVS: fuyu.mindrot.org: openssh [In reply to]

CVSROOT: /var/cvs
Module name: openssh
Changes by: dtucker [at] fuyu 11/08/07 23:09:22

Modified files:
. : ChangeLog moduli.5

Log message:
- (dtucker) OpenBSD CVS Sync
- jmc [at] cvs 2008/06/26 06:59:39
[moduli.5]
tweak previous;

Diff commands:
cvs -nQq rdiff -u -r1.5920 -r1.5921 openssh/ChangeLog
cvs -nQq rdiff -u -r1.1 -r1.2 openssh/moduli.5

ViewVC:
http://anoncvs.mindrot.org/index.cgi/openssh/ChangeLog?r1=1.5920;r2=1.5921&view=patch
http://anoncvs.mindrot.org/index.cgi/openssh/moduli.5?r1=1.1;r2=1.2&view=patch

Please note that there may be a delay before commits are available
on the public ViewVC site.
_______________________________________________
openssh-commits mailing list
openssh-commits [at] mindrot
https://lists.mindrot.org/mailman/listinfo/openssh-commits


dtucker at fuyu

Aug 7, 2011, 6:10 AM

Post #9 of 70 (1383 views)
Permalink
CVS: fuyu.mindrot.org: openssh [In reply to]

CVSROOT: /var/cvs
Module name: openssh
Changes by: dtucker [at] fuyu 11/08/07 23:10:12

Modified files:
. : ChangeLog moduli.5

Log message:
- sobrado [at] cvs 2009/10/28 08:56:54
[moduli.5]
"Diffie-Hellman" is the usual spelling for the cryptographic protocol
first published by Whitfield Diffie and Martin Hellman in 1976.
ok jmc@

Diff commands:
cvs -nQq rdiff -u -r1.5921 -r1.5922 openssh/ChangeLog
cvs -nQq rdiff -u -r1.2 -r1.3 openssh/moduli.5

ViewVC:
http://anoncvs.mindrot.org/index.cgi/openssh/ChangeLog?r1=1.5921;r2=1.5922&view=patch
http://anoncvs.mindrot.org/index.cgi/openssh/moduli.5?r1=1.2;r2=1.3&view=patch

Please note that there may be a delay before commits are available
on the public ViewVC site.
_______________________________________________
openssh-commits mailing list
openssh-commits [at] mindrot
https://lists.mindrot.org/mailman/listinfo/openssh-commits


dtucker at fuyu

Aug 7, 2011, 6:10 AM

Post #10 of 70 (1384 views)
Permalink
CVS: fuyu.mindrot.org: openssh [In reply to]

CVSROOT: /var/cvs
Module name: openssh
Changes by: dtucker [at] fuyu 11/08/07 23:10:56

Modified files:
. : ChangeLog moduli.5

Log message:
- jmc [at] cvs 2010/10/14 20:41:28
[moduli.5]
probabalistic -> probabilistic; from naddy

Diff commands:
cvs -nQq rdiff -u -r1.5922 -r1.5923 openssh/ChangeLog
cvs -nQq rdiff -u -r1.3 -r1.4 openssh/moduli.5

ViewVC:
http://anoncvs.mindrot.org/index.cgi/openssh/ChangeLog?r1=1.5922;r2=1.5923&view=patch
http://anoncvs.mindrot.org/index.cgi/openssh/moduli.5?r1=1.3;r2=1.4&view=patch

Please note that there may be a delay before commits are available
on the public ViewVC site.
_______________________________________________
openssh-commits mailing list
openssh-commits [at] mindrot
https://lists.mindrot.org/mailman/listinfo/openssh-commits


dtucker at fuyu

Aug 7, 2011, 6:12 AM

Post #11 of 70 (1387 views)
Permalink
CVS: fuyu.mindrot.org: openssh [In reply to]

CVSROOT: /var/cvs
Module name: openssh
Changes by: dtucker [at] fuyu 11/08/07 23:12:26

Modified files:
. : ChangeLog sftp.1

Log message:
- dtucker [at] cvs 2011/08/07 12:55:30
[sftp.1]
typo, fix from Laurent Gautrot

Diff commands:
cvs -nQq rdiff -u -r1.5923 -r1.5924 openssh/ChangeLog
cvs -nQq rdiff -u -r1.86 -r1.87 openssh/sftp.1

ViewVC:
http://anoncvs.mindrot.org/index.cgi/openssh/ChangeLog?r1=1.5923;r2=1.5924&view=patch
http://anoncvs.mindrot.org/index.cgi/openssh/sftp.1?r1=1.86;r2=1.87&view=patch

Please note that there may be a delay before commits are available
on the public ViewVC site.
_______________________________________________
openssh-commits mailing list
openssh-commits [at] mindrot
https://lists.mindrot.org/mailman/listinfo/openssh-commits


dtucker at fuyu

Aug 11, 2011, 5:12 PM

Post #12 of 70 (1353 views)
Permalink
CVS: fuyu.mindrot.org: openssh [In reply to]

CVSROOT: /var/cvs
Module name: openssh
Changes by: dtucker [at] fuyu 11/08/12 10:12:55

Modified files:
. : ChangeLog
openbsd-compat : port-linux.c

Log message:
- (dtucker) [openbsd-compat/port-linux.c] Bug 1924: Improve selinux context
change error by reporting old and new context names Patch from
jchadima at redhat.

Diff commands:
cvs -nQq rdiff -u -r1.5924 -r1.5925 openssh/ChangeLog
cvs -nQq rdiff -u -r1.14 -r1.15 openssh/openbsd-compat/port-linux.c

ViewVC:
http://anoncvs.mindrot.org/index.cgi/openssh/ChangeLog?r1=1.5924;r2=1.5925&view=patch
http://anoncvs.mindrot.org/index.cgi/openssh/openbsd-compat/port-linux.c?r1=1.14;r2=1.15&view=patch

Please note that there may be a delay before commits are available
on the public ViewVC site.
_______________________________________________
openssh-commits mailing list
openssh-commits [at] mindrot
https://lists.mindrot.org/mailman/listinfo/openssh-commits


djm at fuyu

Aug 11, 2011, 6:02 PM

Post #13 of 70 (1365 views)
Permalink
CVS: fuyu.mindrot.org: openssh [In reply to]

CVSROOT: /var/cvs
Module name: openssh
Changes by: djm [at] fuyu 11/08/12 11:02:37

Modified files:
. : ChangeLog
contrib/redhat : openssh.spec sshd.init
contrib/suse : openssh.spec rc.sshd

Log message:
- (djm) [contrib/redhat/openssh.spec contrib/redhat/sshd.init]
[contrib/suse/openssh.spec contrib/suse/rc.sshd] Updated RHEL and SLES
init scrips from imorgan AT nas.nasa.gov

Diff commands:
cvs -nQq rdiff -u -r1.5925 -r1.5926 openssh/ChangeLog
cvs -nQq rdiff -u -r1.157 -r1.158 openssh/contrib/redhat/openssh.spec
cvs -nQq rdiff -u -r1.12 -r1.13 openssh/contrib/redhat/sshd.init
cvs -nQq rdiff -u -r1.95 -r1.96 openssh/contrib/suse/openssh.spec
cvs -nQq rdiff -u -r1.3 -r1.4 openssh/contrib/suse/rc.sshd

ViewVC:
http://anoncvs.mindrot.org/index.cgi/openssh/ChangeLog?r1=1.5925;r2=1.5926&view=patch
http://anoncvs.mindrot.org/index.cgi/openssh/contrib/redhat/openssh.spec?r1=1.157;r2=1.158&view=patch
http://anoncvs.mindrot.org/index.cgi/openssh/contrib/redhat/sshd.init?r1=1.12;r2=1.13&view=patch
http://anoncvs.mindrot.org/index.cgi/openssh/contrib/suse/openssh.spec?r1=1.95;r2=1.96&view=patch
http://anoncvs.mindrot.org/index.cgi/openssh/contrib/suse/rc.sshd?r1=1.3;r2=1.4&view=patch

Please note that there may be a delay before commits are available
on the public ViewVC site.
_______________________________________________
openssh-commits mailing list
openssh-commits [at] mindrot
https://lists.mindrot.org/mailman/listinfo/openssh-commits


djm at fuyu

Aug 11, 2011, 6:22 PM

Post #14 of 70 (1359 views)
Permalink
CVS: fuyu.mindrot.org: openssh [In reply to]

CVSROOT: /var/cvs
Module name: openssh
Changes by: djm [at] fuyu 11/08/12 11:22:50

Modified files:
. : ChangeLog
contrib : ssh-copy-id

Log message:
- (djm) [contrib/ssh-copy-id] Fix failure for cases where the path to the
identify file contained whitespace. bz#1828 patch from gwenael.lambrouin
AT gmail.com; ok dtucker@

Diff commands:
cvs -nQq rdiff -u -r1.5926 -r1.5927 openssh/ChangeLog
cvs -nQq rdiff -u -r1.10 -r1.11 openssh/contrib/ssh-copy-id

ViewVC:
http://anoncvs.mindrot.org/index.cgi/openssh/ChangeLog?r1=1.5926;r2=1.5927&view=patch
http://anoncvs.mindrot.org/index.cgi/openssh/contrib/ssh-copy-id?r1=1.10;r2=1.11&view=patch

Please note that there may be a delay before commits are available
on the public ViewVC site.
_______________________________________________
openssh-commits mailing list
openssh-commits [at] mindrot
https://lists.mindrot.org/mailman/listinfo/openssh-commits


tim at fuyu

Aug 16, 2011, 5:29 PM

Post #15 of 70 (1330 views)
Permalink
CVS: fuyu.mindrot.org: openssh [In reply to]

CVSROOT: /var/cvs
Module name: openssh
Changes by: tim [at] fuyu 11/08/17 10:29:03

Modified files:
. : ChangeLog mac.c myproposal.h

Log message:
- (tim) [mac.c myproposal.h] Wrap SHA256 and SHA512 in ifdefs for
OpenSSL 0.9.7. ok djm

Diff commands:
cvs -nQq rdiff -u -r1.5927 -r1.5928 openssh/ChangeLog
cvs -nQq rdiff -u -r1.17 -r1.18 openssh/mac.c
cvs -nQq rdiff -u -r1.30 -r1.31 openssh/myproposal.h

ViewVC:
http://anoncvs.mindrot.org/index.cgi/openssh/ChangeLog?r1=1.5927;r2=1.5928&view=patch
http://anoncvs.mindrot.org/index.cgi/openssh/mac.c?r1=1.17;r2=1.18&view=patch
http://anoncvs.mindrot.org/index.cgi/openssh/myproposal.h?r1=1.30;r2=1.31&view=patch

Please note that there may be a delay before commits are available
on the public ViewVC site.
_______________________________________________
openssh-commits mailing list
openssh-commits [at] mindrot
https://lists.mindrot.org/mailman/listinfo/openssh-commits


djm at fuyu

Aug 16, 2011, 6:31 PM

Post #16 of 70 (1340 views)
Permalink
CVS: fuyu.mindrot.org: openssh [In reply to]

CVSROOT: /var/cvs
Module name: openssh
Changes by: djm [at] fuyu 11/08/17 11:31:09

Modified files:
. : ChangeLog
openbsd-compat : bsd-cygwin_util.c bsd-cygwin_util.h

Log message:
- (djm) [ openbsd-compat/bsd-cygwin_util.c openbsd-compat/bsd-cygwin_util.h]
binary_pipe is no longer required on Cygwin; patch from Corinna Vinschen

Diff commands:
cvs -nQq rdiff -u -r1.5928 -r1.5929 openssh/ChangeLog
cvs -nQq rdiff -u -r1.22 -r1.23 openssh/openbsd-compat/bsd-cygwin_util.c
cvs -nQq rdiff -u -r1.12 -r1.13 openssh/openbsd-compat/bsd-cygwin_util.h

ViewVC:
http://anoncvs.mindrot.org/index.cgi/openssh/ChangeLog?r1=1.5928;r2=1.5929&view=patch
http://anoncvs.mindrot.org/index.cgi/openssh/openbsd-compat/bsd-cygwin_util.c?r1=1.22;r2=1.23&view=patch
http://anoncvs.mindrot.org/index.cgi/openssh/openbsd-compat/bsd-cygwin_util.h?r1=1.12;r2=1.13&view=patch

Please note that there may be a delay before commits are available
on the public ViewVC site.
_______________________________________________
openssh-commits mailing list
openssh-commits [at] mindrot
https://lists.mindrot.org/mailman/listinfo/openssh-commits


djm at fuyu

Aug 16, 2011, 6:59 PM

Post #17 of 70 (1334 views)
Permalink
CVS: fuyu.mindrot.org: openssh [In reply to]

CVSROOT: /var/cvs
Module name: openssh
Changes by: djm [at] fuyu 11/08/17 11:59:28

Modified files:
. : ChangeLog configure.ac

Log message:
- (djm) [configure.ac] error out if the host lacks the necessary bits for
an explicitly requested sandbox type

Diff commands:
cvs -nQq rdiff -u -r1.5929 -r1.5930 openssh/ChangeLog
cvs -nQq rdiff -u -r1.478 -r1.479 openssh/configure.ac

ViewVC:
http://anoncvs.mindrot.org/index.cgi/openssh/ChangeLog?r1=1.5929;r2=1.5930&view=patch
http://anoncvs.mindrot.org/index.cgi/openssh/configure.ac?r1=1.478;r2=1.479&view=patch

Please note that there may be a delay before commits are available
on the public ViewVC site.
_______________________________________________
openssh-commits mailing list
openssh-commits [at] mindrot
https://lists.mindrot.org/mailman/listinfo/openssh-commits


djm at fuyu

Aug 16, 2011, 7:05 PM

Post #18 of 70 (1337 views)
Permalink
CVS: fuyu.mindrot.org: openssh [In reply to]

CVSROOT: /var/cvs
Module name: openssh
Changes by: djm [at] fuyu 11/08/17 12:05:49

Modified files:
. : ChangeLog
contrib : ssh-copy-id

Log message:
- (djm) [contrib/ssh-copy-id] Missing backlslash; spotted by
bisson AT archlinux.org

Diff commands:
cvs -nQq rdiff -u -r1.5930 -r1.5931 openssh/ChangeLog
cvs -nQq rdiff -u -r1.11 -r1.12 openssh/contrib/ssh-copy-id

ViewVC:
http://anoncvs.mindrot.org/index.cgi/openssh/ChangeLog?r1=1.5930;r2=1.5931&view=patch
http://anoncvs.mindrot.org/index.cgi/openssh/contrib/ssh-copy-id?r1=1.11;r2=1.12&view=patch

Please note that there may be a delay before commits are available
on the public ViewVC site.
_______________________________________________
openssh-commits mailing list
openssh-commits [at] mindrot
https://lists.mindrot.org/mailman/listinfo/openssh-commits


djm at fuyu

Aug 16, 2011, 7:08 PM

Post #19 of 70 (1339 views)
Permalink
CVS: fuyu.mindrot.org: openssh [In reply to]

CVSROOT: /var/cvs
Module name: openssh
Changes by: djm [at] fuyu 11/08/17 12:08:18

Modified files:
. : ChangeLog
regress : cfgmatch.sh

Log message:
- dtucker [at] cvs 2011/06/03 05:35:10
[regress/cfgmatch.sh]
use OBJ to find test configs, patch from Tim Rice

Diff commands:
cvs -nQq rdiff -u -r1.5931 -r1.5932 openssh/ChangeLog
cvs -nQq rdiff -u -r1.7 -r1.8 openssh/regress/cfgmatch.sh

ViewVC:
http://anoncvs.mindrot.org/index.cgi/openssh/ChangeLog?r1=1.5931;r2=1.5932&view=patch
http://anoncvs.mindrot.org/index.cgi/openssh/regress/cfgmatch.sh?r1=1.7;r2=1.8&view=patch

Please note that there may be a delay before commits are available
on the public ViewVC site.
_______________________________________________
openssh-commits mailing list
openssh-commits [at] mindrot
https://lists.mindrot.org/mailman/listinfo/openssh-commits


djm at fuyu

Aug 16, 2011, 7:09 PM

Post #20 of 70 (1338 views)
Permalink
CVS: fuyu.mindrot.org: openssh [In reply to]

CVSROOT: /var/cvs
Module name: openssh
Changes by: djm [at] fuyu 11/08/17 12:09:21

Modified files:
. : ChangeLog
regress : connect-privsep.sh

Log message:
- markus [at] cvs 2011/06/30 22:44:43
[connect-privsep.sh]
test with sandbox enabled; ok djm@

Diff commands:
cvs -nQq rdiff -u -r1.5932 -r1.5933 openssh/ChangeLog
cvs -nQq rdiff -u -r1.1 -r1.2 openssh/regress/connect-privsep.sh

ViewVC:
http://anoncvs.mindrot.org/index.cgi/openssh/ChangeLog?r1=1.5932;r2=1.5933&view=patch
http://anoncvs.mindrot.org/index.cgi/openssh/regress/connect-privsep.sh?r1=1.1;r2=1.2&view=patch

Please note that there may be a delay before commits are available
on the public ViewVC site.
_______________________________________________
openssh-commits mailing list
openssh-commits [at] mindrot
https://lists.mindrot.org/mailman/listinfo/openssh-commits


djm at fuyu

Aug 16, 2011, 7:10 PM

Post #21 of 70 (1334 views)
Permalink
CVS: fuyu.mindrot.org: openssh [In reply to]

CVSROOT: /var/cvs
Module name: openssh
Changes by: djm [at] fuyu 11/08/17 12:10:04

Modified files:
. : ChangeLog
regress : cipher-speed.sh try-ciphers.sh

Log message:
- djm [at] cvs 2011/08/02 01:23:41
[regress/cipher-speed.sh regress/try-ciphers.sh]
add SHA256/SHA512 based HMAC modes

Diff commands:
cvs -nQq rdiff -u -r1.5933 -r1.5934 openssh/ChangeLog
cvs -nQq rdiff -u -r1.3 -r1.4 openssh/regress/cipher-speed.sh
cvs -nQq rdiff -u -r1.7 -r1.8 openssh/regress/try-ciphers.sh

ViewVC:
http://anoncvs.mindrot.org/index.cgi/openssh/ChangeLog?r1=1.5933;r2=1.5934&view=patch
http://anoncvs.mindrot.org/index.cgi/openssh/regress/cipher-speed.sh?r1=1.3;r2=1.4&view=patch
http://anoncvs.mindrot.org/index.cgi/openssh/regress/try-ciphers.sh?r1=1.7;r2=1.8&view=patch

Please note that there may be a delay before commits are available
on the public ViewVC site.
_______________________________________________
openssh-commits mailing list
openssh-commits [at] mindrot
https://lists.mindrot.org/mailman/listinfo/openssh-commits


djm at fuyu

Aug 16, 2011, 7:25 PM

Post #22 of 70 (1331 views)
Permalink
CVS: fuyu.mindrot.org: openssh [In reply to]

CVSROOT: /var/cvs
Module name: openssh
Changes by: djm [at] fuyu 11/08/17 12:25:48

Modified files:
. : ChangeLog
regress : cipher-speed.sh try-ciphers.sh

Log message:
- (djm) [regress/cipher-speed.sh regress/try-ciphers.sh] disable HMAC-SHA2
MAC tests for platforms that hack EVP_SHA2 support

Diff commands:
cvs -nQq rdiff -u -r1.5934 -r1.5935 openssh/ChangeLog
cvs -nQq rdiff -u -r1.4 -r1.5 openssh/regress/cipher-speed.sh
cvs -nQq rdiff -u -r1.8 -r1.9 openssh/regress/try-ciphers.sh

ViewVC:
http://anoncvs.mindrot.org/index.cgi/openssh/ChangeLog?r1=1.5934;r2=1.5935&view=patch
http://anoncvs.mindrot.org/index.cgi/openssh/regress/cipher-speed.sh?r1=1.4;r2=1.5&view=patch
http://anoncvs.mindrot.org/index.cgi/openssh/regress/try-ciphers.sh?r1=1.8;r2=1.9&view=patch

Please note that there may be a delay before commits are available
on the public ViewVC site.
_______________________________________________
openssh-commits mailing list
openssh-commits [at] mindrot
https://lists.mindrot.org/mailman/listinfo/openssh-commits


tim at fuyu

Aug 17, 2011, 9:48 PM

Post #23 of 70 (1321 views)
Permalink
CVS: fuyu.mindrot.org: openssh [In reply to]

CVSROOT: /var/cvs
Module name: openssh
Changes by: tim [at] fuyu 11/08/18 14:48:24

Modified files:
. : ChangeLog configure.ac

Log message:
- (tim) [configure.ac] Typo in error message spotted by Andy Tsouladze

Diff commands:
cvs -nQq rdiff -u -r1.5935 -r1.5936 openssh/ChangeLog
cvs -nQq rdiff -u -r1.479 -r1.480 openssh/configure.ac

ViewVC:
http://anoncvs.mindrot.org/index.cgi/openssh/ChangeLog?r1=1.5935;r2=1.5936&view=patch
http://anoncvs.mindrot.org/index.cgi/openssh/configure.ac?r1=1.479;r2=1.480&view=patch

Please note that there may be a delay before commits are available
on the public ViewVC site.
_______________________________________________
openssh-commits mailing list
openssh-commits [at] mindrot
https://lists.mindrot.org/mailman/listinfo/openssh-commits


dtucker at fuyu

Aug 27, 2011, 11:50 AM

Post #24 of 70 (1278 views)
Permalink
CVS: fuyu.mindrot.org: openssh [In reply to]

CVSROOT: /var/cvs
Module name: openssh
Changes by: dtucker [at] fuyu 11/08/28 04:50:20

Modified files:
. : ChangeLog auth-skey.c

Log message:
- (dtucker) [auth-skey.c] Add log.h to fix build --with-skey.

Diff commands:
cvs -nQq rdiff -u -r1.5936 -r1.5937 openssh/ChangeLog
cvs -nQq rdiff -u -r1.34 -r1.35 openssh/auth-skey.c

ViewVC:
http://anoncvs.mindrot.org/index.cgi/openssh/ChangeLog?r1=1.5936;r2=1.5937&view=patch
http://anoncvs.mindrot.org/index.cgi/openssh/auth-skey.c?r1=1.34;r2=1.35&view=patch

Please note that there may be a delay before commits are available
on the public ViewVC site.
_______________________________________________
openssh-commits mailing list
openssh-commits [at] mindrot
https://lists.mindrot.org/mailman/listinfo/openssh-commits


djm at fuyu

Aug 28, 2011, 11:09 PM

Post #25 of 70 (1267 views)
Permalink
CVS: fuyu.mindrot.org: openssh [In reply to]

CVSROOT: /var/cvs
Module name: openssh
Changes by: djm [at] fuyu 11/08/29 16:09:57

Modified files:
. : ChangeLog
openbsd-compat : port-linux.c

Log message:
- (djm) [openbsd-compat/port-linux.c] Suppress logging when attempting
to switch SELinux context away from unconfined_t, based on patch from
Jan Chadima; bz#1919 ok dtucker@

Diff commands:
cvs -nQq rdiff -u -r1.5937 -r1.5938 openssh/ChangeLog
cvs -nQq rdiff -u -r1.15 -r1.16 openssh/openbsd-compat/port-linux.c

ViewVC:
http://anoncvs.mindrot.org/index.cgi/openssh/ChangeLog?r1=1.5937;r2=1.5938&view=patch
http://anoncvs.mindrot.org/index.cgi/openssh/openbsd-compat/port-linux.c?r1=1.15;r2=1.16&view=patch

Please note that there may be a delay before commits are available
on the public ViewVC site.
_______________________________________________
openssh-commits mailing list
openssh-commits [at] mindrot
https://lists.mindrot.org/mailman/listinfo/openssh-commits

First page Previous page 1 2 3 Next page Last page  View All OpenSSH commits RSS feed   Index | Next | Previous | View Threaded
 
 


Interested in having your list archived? Contact Gossamer Threads
 
  Web Applications & Managed Hosting Powered by Gossamer Threads Inc.