diff options
author | Mattias Andrée <maandree@operamail.com> | 2015-10-07 02:24:38 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2015-10-07 02:24:38 +0200 |
commit | 335a49b18ba078289aa2d2aa0516e12f001e13c7 (patch) | |
tree | f37817806e86f73592deb8b94adf621d90fe2136 | |
parent | m (diff) | |
download | libkeccak-335a49b18ba078289aa2d2aa0516e12f001e13c7.tar.gz libkeccak-335a49b18ba078289aa2d2aa0516e12f001e13c7.tar.bz2 libkeccak-335a49b18ba078289aa2d2aa0516e12f001e13c7.tar.xz |
typo
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to '')
-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); |