patches for easier mirroring, to eliminate a special copy, to make www.freebsd.org/security a full copy of security.freebsd.org and be eventually be the same. For now files are just sitting there. The symlinks are missing. Discussed on: www (repository location) Discussed with: simon (so)
13 lines
401 B
Diff
13 lines
401 B
Diff
Index: secure/lib/libcrypt/crypt-des.c
|
|
===================================================================
|
|
--- secure/lib/libcrypt/crypt-des.c (revision 234682)
|
|
+++ secure/lib/libcrypt/crypt-des.c (working copy)
|
|
@@ -606,7 +606,7 @@
|
|
q = (u_char *)keybuf;
|
|
while (q - (u_char *)keybuf - 8) {
|
|
*q++ = *key << 1;
|
|
- if (*(q - 1))
|
|
+ if (*key != '\0')
|
|
key++;
|
|
}
|
|
if (des_setkey((char *)keybuf))
|