diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-07-31 11:14:46 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-07-31 11:14:46 +0000 |
commit | c3966b88eeb1e0b5726ca16a70a94269d40ee152 (patch) | |
tree | 01b5267fea81493dda40ddbad0391c4a35c19c76 /sunrpc/xcrypt.c | |
parent | bdd421cc6d055af6a1a561344b2fa56267cad617 (diff) | |
download | glibc-c3966b88eeb1e0b5726ca16a70a94269d40ee152.tar glibc-c3966b88eeb1e0b5726ca16a70a94269d40ee152.tar.gz glibc-c3966b88eeb1e0b5726ca16a70a94269d40ee152.tar.bz2 glibc-c3966b88eeb1e0b5726ca16a70a94269d40ee152.zip |
Update.
1998-07-31 11:10 Ulrich Drepper <drepper@cygnus.com>
* elf/elf.h: Add lots of new symbols from Irix and Solaris.
* sysdeps/unix/sysv/linux/sigstack.c: Include stddef.h to get NULL
definition.
1998-07-31 Thorsten Kukuk <kukuk@vt.uni-paderborn.de>
* sunrpc/xcrypt.c: Use only the first 8 characters of the password.
1998-07-30 21:06 -0400 Zack Weinberg <zack@rabi.phys.columbia.edu>
* sysdeps/generic/glob.c: Undefine strdup before defining it,
because bits/string2.h may have defined it already.
1998-07-29 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* stdio-common/vfscanf.c: Optimize looking for type modifiers.
Fix recognition of 'a' modifier vs. 'a' format.
(TYPEMOD): Removed.
* stdio-common/printf-parse.h (parse_one_spec): Optimize looking
for type modifiers. Fix recognition of 'hh' modifier.
1998-07-31 Thorsten Kukuk <kukuk@vt.uni-paderborn.de>
* sunrpc/svc_unix.c: Fix typo.
1998-07-31 Thorsten Kukuk <kukuk@vt.uni-paderborn.de>
* sysdeps/unix/sysv/linux/recvmsg.c: Don't check for SCM_CREDS before
syscall.
Diffstat (limited to 'sunrpc/xcrypt.c')
-rw-r--r-- | sunrpc/xcrypt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sunrpc/xcrypt.c b/sunrpc/xcrypt.c index d770a7d648..bee38ad8b5 100644 --- a/sunrpc/xcrypt.c +++ b/sunrpc/xcrypt.c @@ -143,7 +143,7 @@ passwd2des (char *pw, char *key) int i; memset (key, 0, 8); - for (i = 0; *pw; i = (i + 1) % 8) + for (i = 0; *pw && i < 8; ++i) key[i] ^= *pw++ << 1; des_setparity (key); |