Skip to content

Commit dddf466

Browse files
committed
trim excess whitespace
1 parent e664ce5 commit dddf466

21 files changed

Lines changed: 17 additions & 59 deletions

CHANGELOG

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,4 +105,3 @@ me know! Thanks to all the bug reporters as well.
105105
their standard header files.
106106

107107
* Fixed typos
108-

CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,4 +153,3 @@ include(CPack)
153153
cpack_add_component(bin DISPLAY_NAME bin REQUIRED INSTALL_TYPES all)
154154
cpack_add_component(lib DISPLAY_NAME lib REQUIRED INSTALL_TYPES all)
155155
cpack_add_component(lib-dev DISPLAY_NAME lib-dev REQUIRED INSTALL_TYPES all DEPENDS lib)
156-

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,4 +174,3 @@ Some notable differences between actual implementation and documentation:
174174
in the documentation.
175175
- All two-way cipher cascades are the wrong way round in the documentation,
176176
but all three-way cipher cascades are correct.
177-

crypto-dev.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,4 +162,3 @@ tc_crypto_init(void)
162162

163163
return 0;
164164
}
165-

generic_xts.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,4 +172,3 @@ xts_uninit(struct xts_ctx *ctx)
172172

173173
return 0;
174174
}
175-

generic_xts.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,4 +46,3 @@ int xts_init(struct xts_ctx *ctxp, void *arg1, void *arg2, set_key_fn set_key_fn
4646
int xts_encrypt(struct xts_ctx *ctx, uint8_t *data, size_t len, uint8_t *iv);
4747
int xts_decrypt(struct xts_ctx *ctx, uint8_t *data, size_t len, uint8_t *iv);
4848
int xts_uninit(struct xts_ctx *ctxp);
49-

humanize.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,3 @@
2929

3030
int _humanize_number(char *buf, size_t bufsz, uint64_t num);
3131
int _dehumanize_number(const char *buf, uint64_t *dest);
32-

main.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -234,8 +234,8 @@ static struct option longopts[] = {
234234
{ "weak-keys", no_argument, NULL, 'w' },
235235
{ "insecure-erase", no_argument, NULL, 'z' },
236236
{ "help", no_argument, NULL, 'h' },
237-
{ "no-retries", no_argument, NULL, FLAG_LONG_NO_RETRIES },
238-
{ NULL, 0, NULL, 0 },
237+
{ "no-retries", no_argument, NULL, FLAG_LONG_NO_RETRIES },
238+
{ NULL, 0, NULL, 0 },
239239
};
240240

241241
#define _set_str_opt(opt) \

pbkdf2-gcrypt.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,4 +74,3 @@ pbkdf2(struct pbkdf_prf_algo *hash, const char *pass, int passlen,
7474

7575
return 0;
7676
}
77-

pbkdf2-openssl.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,4 +58,3 @@ pbkdf2(struct pbkdf_prf_algo *hash, const char *pass, int passlen,
5858

5959
return 0;
6060
}
61-

0 commit comments

Comments
 (0)