diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-10-17 03:21:51 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-10-17 03:21:51 +0200 |
commit | f6dacc23ff495cbdd3f1baf5985ded21a7e4a9c9 (patch) | |
tree | b4c56ec45f126d37244e2b125c7c3faeb0a20298 /include | |
parent | 36ab585f68295487a0973bde86bcb0ab7577a8ff (diff) | |
download | busybox-w32-f6dacc23ff495cbdd3f1baf5985ded21a7e4a9c9.tar.gz busybox-w32-f6dacc23ff495cbdd3f1baf5985ded21a7e4a9c9.tar.bz2 busybox-w32-f6dacc23ff495cbdd3f1baf5985ded21a7e4a9c9.zip |
bring md5 and sha1 names closer. no code changes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/libbb.h b/include/libbb.h index d05b2d48a..dec4e3af5 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -1539,8 +1539,8 @@ typedef struct md5_ctx_t { | |||
1539 | uint32_t B; | 1539 | uint32_t B; |
1540 | uint32_t C; | 1540 | uint32_t C; |
1541 | uint32_t D; | 1541 | uint32_t D; |
1542 | uint64_t total; | 1542 | uint64_t total64; |
1543 | char buffer[64]; | 1543 | char wbuffer[64]; |
1544 | } md5_ctx_t; | 1544 | } md5_ctx_t; |
1545 | #else | 1545 | #else |
1546 | /* libbb/md5prime.c uses a bit different one: */ | 1546 | /* libbb/md5prime.c uses a bit different one: */ |