Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Bug 1208405 - fix cid1394326, r=mt
Differential Revision: https://nss-review.dev.mozaws.net/D61

--HG--
extra : rebase_source : 03a11b6dcdffc53ebf3e375723053cf71a79a1a3
extra : amend_source : caf5eef211efcfc3cc6466d66be06ea13b9305e8
  • Loading branch information
franziskuskiefer committed Nov 14, 2016
1 parent d2860e5 commit dd06817
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions cmd/tstclnt/tstclnt.c
Expand Up @@ -1003,8 +1003,12 @@ run_client(void)
if (serverCertAuth.testFreshStatusFromSideChannel) {
opt.value.non_blocking = PR_FALSE;
}
PR_SetSocketOption(s, &opt);
/*PR_SetSocketOption(PR_GetSpecialFD(PR_StandardInput), &opt);*/
status = PR_SetSocketOption(s, &opt);
if (status != PR_SUCCESS) {
SECU_PrintError(progName, "error setting socket options");
error = 1;
goto done;
}

s = SSL_ImportFD(NULL, s);
if (s == NULL) {
Expand Down

0 comments on commit dd06817

Please sign in to comment.