forked from pool/glibc
089d1e31ae
- use symbol version OW_CRYPT_1.0 for the Owl extensions (crypt_r[an], crypt_gensalt.*) - refactor sha2 gensalt patch - document sha2 hashes in man page - fix signature of sha2 functions OBS-URL: https://build.opensuse.org/request/show/79998 OBS-URL: https://build.opensuse.org/package/show/Base:System/glibc?expand=0&rev=96
25 lines
697 B
Diff
25 lines
697 B
Diff
Index: glibc-2.14/Versions.def
|
|
===================================================================
|
|
--- glibc-2.14.orig/Versions.def
|
|
+++ glibc-2.14/Versions.def
|
|
@@ -41,6 +41,7 @@ libc {
|
|
}
|
|
libcrypt {
|
|
GLIBC_2.0
|
|
+ OW_CRYPT_1.0
|
|
}
|
|
libdl {
|
|
GLIBC_2.0
|
|
Index: glibc-2.14/crypt/Versions
|
|
===================================================================
|
|
--- glibc-2.14.orig/crypt/Versions
|
|
+++ glibc-2.14/crypt/Versions
|
|
@@ -3,4 +3,7 @@ libcrypt {
|
|
crypt; crypt_r; encrypt; encrypt_r; fcrypt; setkey; setkey_r;
|
|
crypt_rn; crypt_ra; crypt_gensalt; crypt_gensalt_rn; crypt_gensalt_ra;
|
|
}
|
|
+ OW_CRYPT_1.0 {
|
|
+ crypt_rn; crypt_ra; crypt_gensalt; crypt_gensalt_rn; crypt_gensalt_ra;
|
|
+ }
|
|
}
|