search for: getput

Displaying 13 results from an estimated 13 matches for "getput".

Did you mean: getpt
2014 Aug 25
2
Call for testing: OpenSSH 6.7
...c:67: error: 'point' undeclared (first use in this function) make: 1254-004 The error code from the last command is 1. On Fri, Aug 22, 2014 at 12:31 AM, Damien Miller <djm at mindrot.org> wrote: > On Thu, 21 Aug 2014, Kevin Brott wrote: > > > sshbuf-getput-crypto.c:27:24: error: openssl/ec.h: No such > > file or directory > > gmake: *** [sshbuf-getput-crypto.o] Error 1 > > I'll commit this momentarily. Will be in the 20140823 snapshot. > > > Index: sshbuf-getput-crypto.c > ==============================...
2018 Jun 08
4
vanilla build of 7.7p1 release on linux/4.17 fails with gcc8 @ "/usr/bin/ld: unrecognized option '-Wl,-z,retpolineplt'"
On 8 June 2018 at 11:21, PGNet Dev <pgnet.dev at gmail.com> wrote: > fyi > > add'l -- and looks unrelated -- issue > /usr/include/pthread.h:251:12: note: previous declaration of ?pthread_join? was here > extern int pthread_join (pthread_t __th, void **__thread_return); What included pthread.h? That's explicitly not supported by sshd: $ grep THREAD
2015 Jun 25
3
Call for testing: OpenSSH 6.9
On Thu, 25 Jun 2015, Michael Felt wrote: > Just running a standard make, and then a make install to a packaging > directory. It seems to be complaining about missing keys - not sure yet if > this is a show stopper For packaging you want the install-nokeys rule not install. -- Tim Rice Multitalents tim at multitalents.net
2015 Feb 28
3
SAP-2015-3-1 issues
...ests/hostkeys [ -d `pwd`/regress/unittests/kex ] || mkdir -p `pwd`/regress/unittests/kex [ -f `pwd`/regress/Makefile ] || ln -s `cd . && pwd`/regress/Makefile `pwd`/regress/Makefile (cd openbsd-compat && make) /usr/bin/ar rv libssh.a ssh_api.o ssherr.o sshbuf.o sshkey.o sshbuf-getput-basic.o sshbuf-misc.o sshbuf-getput-crypto.o krl.o bitmap.o authfd.o authfile.o bufaux.o bufbn.o bufec.o buffer.o canohost.o channels.o cipher.o cipher-aes.o cipher-aesctr.o cipher-bf1.o cipher-ctr.o cipher-3des1.o cleanup.o compat.o crc32.o deattack.o fatal.o hostfile.o log.o match.o md-s...
2016 Jun 20
0
[Bug 2589] errors show when build openssh 6.7p1 on AIX 5.3
...oesn't work. I do have access to an AIX box however it doesn't have xlc. I was hoping to use the config.h you supplied to figure out why it doesn't work, but I haven't done that yet. If you need to get it built right now, I'd suggest using 7.2p2 and adding this line to sshbuf-getput-basic.c after all the #defines and #includes: #define va_copy(dest, src) (dest) = (src) -- You are receiving this mail because: You are watching the assignee of the bug. You are watching someone on the CC list of the bug.
2016 Jun 20
0
[Bug 2589] errors show when build openssh 6.7p1 on AIX 5.3
https://bugzilla.mindrot.org/show_bug.cgi?id=2589 --- Comment #29 from Darren Tucker <dtucker at zip.com.au> --- Created attachment 2842 --> https://bugzilla.mindrot.org/attachment.cgi?id=2842&action=edit move VA_COPY into openbsd-compat.h and use in sshbuf-getput-basic.c If comment#27 checks out, please try this patch. -- You are receiving this mail because: You are watching someone on the CC list of the bug. You are watching the assignee of the bug.
2003 Aug 16
0
sftp-server (secure) chroot patch, comment fix
...penssh-3.6.1p2/sftp-server.c 2003-08-16 19:07:14.273582000 +0200 @@ -24,15 +24,24 @@ #include "includes.h" RCSID("$OpenBSD: sftp-server.c,v 1.41 2003/03/26 04:02:51 deraadt Exp $"); +#define CHROOT #include "buffer.h" #include "bufaux.h" #include "getput.h" #include "log.h" #include "xmalloc.h" - #include "sftp.h" #include "sftp-common.h" +#ifdef CHROOT +#include "uidswap.h" +#include <pwd.h> +#include <sys/types.h> +#include <sys/stat.h> +#include <string.h> +#inc...
2003 Sep 30
1
[PATCH] sftp-server (secure) chroot patch, 3.7.1p2 update
...sh-3.7.1p2/sftp-server.c 2003-09-30 17:22:43.730402000 +0200 @@ -24,6 +24,7 @@ #include \"includes.h\" RCSID(\"$OpenBSD: sftp-server.c,v 1.43 2003/06/25 22:39:36 miod Exp $\"); +#define CHROOT #include \"buffer.h\" #include \"bufaux.h\" #include \"getput.h\" @@ -33,6 +34,15 @@ #include \"sftp.h\" #include \"sftp-common.h\" +#ifdef CHROOT +#include \"uidswap.h\" +#include <pwd.h> +#include <sys/types.h> +#include <sys/stat.h> +#include <string.h> +#include <unistd.h> +#endif /* CHR...
2003 Aug 16
0
sftp-server (secure) chroot patch?
...h-3.6.1p2/sftp-server.c 2003-08-16 16:43:11.884356000 +0200 @@ -24,15 +24,24 @@ #include "includes.h" RCSID("$OpenBSD: sftp-server.c,v 1.41 2003/03/26 04:02:51 deraadt Exp $"); +#define CHROOT #include "buffer.h" #include "bufaux.h" #include "getput.h" #include "log.h" #include "xmalloc.h" - #include "sftp.h" #include "sftp-common.h" +#ifdef CHROOT +#include "uidswap.h" +#include <pwd.h> +#include <sys/types.h> +#include <sys/stat.h> +#include <string.h> +#incl...
2005 May 19
1
ssh-keygen private keys export - new feature
...*key_load_private_pem(int, int, const char *, char **); --- ssh-keygen.c.orig 2005-03-02 02:33:04.000000000 +0100 +++ ssh-keygen.c 2005-05-19 22:20:02.000000000 +0200 @@ -24,6 +24,7 @@ #include "uuencode.h" #include "buffer.h" #include "bufaux.h" +#include "getput.h" #include "pathnames.h" #include "log.h" #include "misc.h" @@ -152,8 +153,104 @@ #define SSH_COM_PUBLIC_BEGIN "---- BEGIN SSH2 PUBLIC KEY ----" #define SSH_COM_PUBLIC_END "---- END SSH2 PUBLIC KEY ----" #define SSH_COM_PRIVATE_B...
2014 Nov 14
10
[Bug 2315] New: OpenSSH 6.7p1 on AIX 7.1 compile issue
...error code from the last command is 8. Same error on AIX 5.3 TL12 SP9 with IBM XL C/C++ 11.1.0.19 and AIX 6.1 TL8 SP3 with IBM XL C/C++ 10.1.0.20 I was able to compile OpenSSH 6.6p1 with OpenSSL 1.0.1i and zlib 1.2.8 with this procedure without issue. I've found that by adding this in sshbuf-getput-basic.c and by replacing every occurence of va_copy by VA_COPY, I'm now able to compile it. #ifndef VA_COPY # ifdef HAVE_VA_COPY # define VA_COPY(dest, src) va_copy(dest, src) # else # ifdef HAVE___VA_COPY # define VA_COPY(dest, src) __va_copy(dest, src) # else # define VA_COPY(dest, src...
2019 Oct 01
9
Call for testing: OpenSSH 8.1
Hi, OpenSSH 8.1p1 is almost ready for release, so we would appreciate testing on as many platforms and systems as possible. This is a bugfix release. Snapshot releases for portable OpenSSH are available from http://www.mindrot.org/openssh_snap/ The OpenBSD version is available in CVS HEAD: http://www.openbsd.org/anoncvs.html Portable OpenSSH is also available via git using the instructions at
2015 May 29
16
Call for testing: OpenSSH 6.9
Hi, OpenSSH 6.9 is almost ready for release, so we would appreciate testing on as many platforms and systems as possible. This release contains some substantial new features and a number of bugfixes. Snapshot releases for portable OpenSSH are available from http://www.mindrot.org/openssh_snap/ The OpenBSD version is available in CVS HEAD: http://www.openbsd.org/anoncvs.html Portable OpenSSH is