diff options
author | Konstantin Serebryany <konstantin.s.serebryany@gmail.com> | 2014-06-03 16:39:08 +0530 |
---|---|---|
committer | Siddhesh Poyarekar <siddhesh@redhat.com> | 2014-06-03 16:39:08 +0530 |
commit | 8747cd034a460597a78c4ac616c13e3c981ff1d3 (patch) | |
tree | e7afbbf3198b6e56c3560b2b8805d029af24605c /ChangeLog | |
parent | d936d379eb1837c35e390b6293f15f75b634db6e (diff) | |
download | glibc-8747cd034a460597a78c4ac616c13e3c981ff1d3.tar.gz glibc-8747cd034a460597a78c4ac616c13e3c981ff1d3.tar.xz glibc-8747cd034a460597a78c4ac616c13e3c981ff1d3.zip |
Remove redundant nested function b64_from_24bit
Move multiple definitions of the nested function b64_from_24bit into a single function __b64_from_24bit.
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog index ad3118195f..a8e05019bd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,18 @@ +2014-06-03 Kostya Serebryany <konstantin.s.serebryany@gmail.com> + + * crypt/crypt-private.h: Include ufc-crypt.h. + (__b64_from_24bit): Declare extern. + * crypt/crypt_util.c(__b64_from_24bit): New function. + (b64t): New static const variable. + * crypt/md5-crypt.c (b64_from_24bit): Remove function. + (b64t): Remove variable. + (__md5_crypt_r): Replace b64_from_24bit with __b64_from_24bit. + * crypt/sha256-crypt.c: Include crypt-private.h. + (b64t): Remove variable. + (__sha256_crypt_r): Remove b64_from_24bit and replace + with __b64_from_24bit. + * crypt/sha512-crypt.c: Likewise. + 2014-06-02 Roland McGrath <roland@hack.frob.com> * nptl/sysdeps/unix/sysv/linux/sh/vfork.S: Moved ... |