diff options
author | Denys Vlasenko | 2010-10-17 03:21:51 +0200 |
---|---|---|
committer | Denys Vlasenko | 2010-10-17 03:21:51 +0200 |
commit | f6dacc23ff495cbdd3f1baf5985ded21a7e4a9c9 (patch) | |
tree | b4c56ec45f126d37244e2b125c7c3faeb0a20298 /include/libbb.h | |
parent | 36ab585f68295487a0973bde86bcb0ab7577a8ff (diff) | |
download | busybox-f6dacc23ff495cbdd3f1baf5985ded21a7e4a9c9.zip busybox-f6dacc23ff495cbdd3f1baf5985ded21a7e4a9c9.tar.gz |
bring md5 and sha1 names closer. no code changes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'include/libbb.h')
-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 d05b2d4..dec4e3a 100644 --- a/include/libbb.h +++ b/include/libbb.h @@ -1539,8 +1539,8 @@ typedef struct md5_ctx_t { uint32_t B; uint32_t C; uint32_t D; - uint64_t total; - char buffer[64]; + uint64_t total64; + char wbuffer[64]; } md5_ctx_t; #else /* libbb/md5prime.c uses a bit different one: */ |