Displaying 2 results from an estimated 2 matches for "do_screen_candid".
2007 Mar 01
1
Proposed patch: ssh-keygen allows writing to stdout for moduli generation
...;Couldn't open modulus candidate file \"%s\": %s",
+ out_file, strerror(errno));
+ }
+ } else
+ out = stdout;
+
if (bits == 0)
bits = DEFAULT_BITS;
if (gen_candidates(out, memory, bits, start) != 0)
@@ -1287,8 +1290,16 @@ main(int ac, char **av)
if (do_screen_candidates) {
FILE *in;
- FILE *out = fopen(out_file, "w");
+ FILE *out;
+ if (strcmp(out_file, "-") != 0) {
+ if ((out = fopen(out_file, "w")) == NULL) {
+ fatal("Couldn't open moduli file \"%s\": %s",
+ out_file, strerror(errno)...
2015 Apr 23
16
[Bug 2388] New: build fixups for --without-openssl
https://bugzilla.mindrot.org/show_bug.cgi?id=2388
Bug ID: 2388
Summary: build fixups for --without-openssl
Product: Portable OpenSSH
Version: 6.8p1
Hardware: All
OS: All
Status: NEW
Severity: enhancement
Priority: P5
Component: Build system
Assignee: unassigned-bugs at