Loading ssl/fatalerrtest.c +1 −1 Original line number Diff line number Diff line Loading @@ -76,7 +76,7 @@ int main(int argc, char *argv[]) } /* SSL_read()/SSL_write should fail because of a previous fatal error */ if ((len = SSL_read(sssl, buf, sizeof(buf - 1))) > 0) { if ((len = SSL_read(sssl, buf, sizeof(buf) - 1)) > 0) { buf[len] = '\0'; printf("Unexpected success reading data: %s\n", buf); goto err; Loading Loading
ssl/fatalerrtest.c +1 −1 Original line number Diff line number Diff line Loading @@ -76,7 +76,7 @@ int main(int argc, char *argv[]) } /* SSL_read()/SSL_write should fail because of a previous fatal error */ if ((len = SSL_read(sssl, buf, sizeof(buf - 1))) > 0) { if ((len = SSL_read(sssl, buf, sizeof(buf) - 1)) > 0) { buf[len] = '\0'; printf("Unexpected success reading data: %s\n", buf); goto err; Loading