diff options
-rw-r--r-- | doc/man/libkeccak_generalised_sum_fd.3 | 2 | ||||
-rw-r--r-- | doc/man/libkeccak_keccaksum_fd.3 | 2 | ||||
-rw-r--r-- | doc/man/libkeccak_rawshakesum_fd.3 | 2 | ||||
-rw-r--r-- | doc/man/libkeccak_sha3sum_fd.3 | 2 | ||||
-rw-r--r-- | doc/man/libkeccak_shakesum_fd.3 | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/doc/man/libkeccak_generalised_sum_fd.3 b/doc/man/libkeccak_generalised_sum_fd.3 index ee09d83..6f0d5ec 100644 --- a/doc/man/libkeccak_generalised_sum_fd.3 +++ b/doc/man/libkeccak_generalised_sum_fd.3 @@ -83,7 +83,7 @@ spec.bitrate = 1024; spec.capacity = 576; spec.output = 256; -if (libkeccak_generalised_sum_fd(STDIN_FILNO, &state, &spec, NULL, binhash) < 0) +if (libkeccak_generalised_sum_fd(STDIN_FILENO, &state, &spec, NULL, binhash) < 0) goto fail; libkeccak_behex_lower(hexhash, binhash, sizeof(binhash)); printf("%s\\n", hexhash); diff --git a/doc/man/libkeccak_keccaksum_fd.3 b/doc/man/libkeccak_keccaksum_fd.3 index 5099cf4..1e70370 100644 --- a/doc/man/libkeccak_keccaksum_fd.3 +++ b/doc/man/libkeccak_keccaksum_fd.3 @@ -81,7 +81,7 @@ spec.bitrate = 1024; spec.capacity = 576; spec.output = 256; -if (libkeccak_keccaksum_fd(STDIN_FILNO, &state, &spec, binhash) < 0) +if (libkeccak_keccaksum_fd(STDIN_FILENO, &state, &spec, binhash) < 0) goto fail; libkeccak_behex_lower(hexhash, binhash, sizeof(binhash)); printf("%s\\n", hexhash); diff --git a/doc/man/libkeccak_rawshakesum_fd.3 b/doc/man/libkeccak_rawshakesum_fd.3 index f0a6575..f158616 100644 --- a/doc/man/libkeccak_rawshakesum_fd.3 +++ b/doc/man/libkeccak_rawshakesum_fd.3 @@ -74,7 +74,7 @@ from stdin, and prints the hash, in hexadecimal form, to stdout. .LP .nf libkeccak_state_t state; -if (libkeccak_rawshakesum_fd(STDIN_FILNO, &state, 256, 512, binhash) < 0) +if (libkeccak_rawshakesum_fd(STDIN_FILENO, &state, 256, 512, binhash) < 0) goto fail; libkeccak_behex_lower(hexhash, binhash, sizeof(binhash)); printf("%s\\n", hexhash); diff --git a/doc/man/libkeccak_sha3sum_fd.3 b/doc/man/libkeccak_sha3sum_fd.3 index 05382cd..daacd2e 100644 --- a/doc/man/libkeccak_sha3sum_fd.3 +++ b/doc/man/libkeccak_sha3sum_fd.3 @@ -72,7 +72,7 @@ from stdin, and prints the hash, in hexadecimal form, to stdout. .LP .nf libkeccak_state_t state; -if (libkeccak_sha3sum_fd(STDIN_FILNO, &state, 256, binhash) < 0) +if (libkeccak_sha3sum_fd(STDIN_FILENO, &state, 256, binhash) < 0) goto fail; libkeccak_behex_lower(hexhash, binhash, sizeof(binhash)); printf("%s\\n", hexhash); diff --git a/doc/man/libkeccak_shakesum_fd.3 b/doc/man/libkeccak_shakesum_fd.3 index 6089ab0..0b86e6e 100644 --- a/doc/man/libkeccak_shakesum_fd.3 +++ b/doc/man/libkeccak_shakesum_fd.3 @@ -74,7 +74,7 @@ from stdin, and prints the hash, in hexadecimal form, to stdout. .LP .nf libkeccak_state_t state; -if (libkeccak_shakesum_fd(STDIN_FILNO, &state, 256, 512, binhash) < 0) +if (libkeccak_shakesum_fd(STDIN_FILENO, &state, 256, 512, binhash) < 0) goto fail; libkeccak_behex_lower(hexhash, binhash, sizeof(binhash)); printf("%s\\n", hexhash); |