diff options
author | Colin Watson <cjwatson@debian.org> | 2019-10-09 22:59:48 +0100 |
---|---|---|
committer | Colin Watson <cjwatson@debian.org> | 2019-10-09 22:59:48 +0100 |
commit | 4213eec74e74de6310c27a40c3e9759a08a73996 (patch) | |
tree | e97a6dcafc6763aea7c804e4e113c2750cb1400d /ssh-add.c | |
parent | 102062f825fb26a74295a1c089c00c4c4c76b68a (diff) | |
parent | cdf1d0a9f5d18535e0a18ff34860e81a6d83aa5c (diff) |
Import openssh_8.1p1.orig.tar.gz
Diffstat (limited to 'ssh-add.c')
-rw-r--r-- | ssh-add.c | 13 |
1 files changed, 7 insertions, 6 deletions
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ssh-add.c,v 1.138 2019/01/21 12:53:35 djm Exp $ */ | 1 | /* $OpenBSD: ssh-add.c,v 1.141 2019/09/06 05:23:55 djm Exp $ */ |
2 | /* | 2 | /* |
3 | * Author: Tatu Ylonen <ylo@cs.hut.fi> | 3 | * Author: Tatu Ylonen <ylo@cs.hut.fi> |
4 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland | 4 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland |
@@ -40,8 +40,10 @@ | |||
40 | #include <sys/types.h> | 40 | #include <sys/types.h> |
41 | #include <sys/stat.h> | 41 | #include <sys/stat.h> |
42 | 42 | ||
43 | #include <openssl/evp.h> | 43 | #ifdef WITH_OPENSSL |
44 | #include "openbsd-compat/openssl-compat.h" | 44 | # include <openssl/evp.h> |
45 | # include "openbsd-compat/openssl-compat.h" | ||
46 | #endif | ||
45 | 47 | ||
46 | #include <errno.h> | 48 | #include <errno.h> |
47 | #include <fcntl.h> | 49 | #include <fcntl.h> |
@@ -203,7 +205,7 @@ add_file(int agent_fd, const char *filename, int key_only, int qflag) | |||
203 | if (strcmp(filename, "-") == 0) { | 205 | if (strcmp(filename, "-") == 0) { |
204 | fd = STDIN_FILENO; | 206 | fd = STDIN_FILENO; |
205 | filename = "(stdin)"; | 207 | filename = "(stdin)"; |
206 | } else if ((fd = open(filename, O_RDONLY)) < 0) { | 208 | } else if ((fd = open(filename, O_RDONLY)) == -1) { |
207 | perror(filename); | 209 | perror(filename); |
208 | return -1; | 210 | return -1; |
209 | } | 211 | } |
@@ -575,7 +577,6 @@ main(int argc, char **argv) | |||
575 | SyslogFacility log_facility = SYSLOG_FACILITY_AUTH; | 577 | SyslogFacility log_facility = SYSLOG_FACILITY_AUTH; |
576 | LogLevel log_level = SYSLOG_LEVEL_INFO; | 578 | LogLevel log_level = SYSLOG_LEVEL_INFO; |
577 | 579 | ||
578 | ssh_malloc_init(); /* must be called before any mallocs */ | ||
579 | /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */ | 580 | /* Ensure that fds 0, 1 and 2 are open or directed to /dev/null */ |
580 | sanitise_stdfd(); | 581 | sanitise_stdfd(); |
581 | 582 | ||
@@ -728,7 +729,7 @@ main(int argc, char **argv) | |||
728 | for (i = 0; default_files[i]; i++) { | 729 | for (i = 0; default_files[i]; i++) { |
729 | snprintf(buf, sizeof(buf), "%s/%s", pw->pw_dir, | 730 | snprintf(buf, sizeof(buf), "%s/%s", pw->pw_dir, |
730 | default_files[i]); | 731 | default_files[i]); |
731 | if (stat(buf, &st) < 0) | 732 | if (stat(buf, &st) == -1) |
732 | continue; | 733 | continue; |
733 | if (do_file(agent_fd, deleting, key_only, buf, | 734 | if (do_file(agent_fd, deleting, key_only, buf, |
734 | qflag) == -1) | 735 | qflag) == -1) |