diff options
author | Bryan Murphy <bmurphy1976@gmail.com> | 2015-06-03 20:34:09 -0500 |
---|---|---|
committer | Francesco Colista <fcolista@alpinelinux.org> | 2015-06-09 13:20:57 +0000 |
commit | cc9cbeb32504957cf0e2054a00cd5dbd3c6a19c6 (patch) | |
tree | 486d0fabf4eaca4f8883ad8f21ac16dba6cf0630 /main/nginx-lua/musl-crypt-fix.patch | |
parent | c418d94bb53326a2fd2618663c7166b01d874cbd (diff) | |
download | aports-cc9cbeb32504957cf0e2054a00cd5dbd3c6a19c6.tar.bz2 aports-cc9cbeb32504957cf0e2054a00cd5dbd3c6a19c6.tar.xz |
main/nginx-lua: upgrade to 1.8.0 and unify modules with main/nginx
Diffstat (limited to 'main/nginx-lua/musl-crypt-fix.patch')
-rw-r--r-- | main/nginx-lua/musl-crypt-fix.patch | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/main/nginx-lua/musl-crypt-fix.patch b/main/nginx-lua/musl-crypt-fix.patch deleted file mode 100644 index 2f11fe2e9d..0000000000 --- a/main/nginx-lua/musl-crypt-fix.patch +++ /dev/null @@ -1,13 +0,0 @@ ---- nginx-1.4.4/src/os/unix/ngx_user.c.orig -+++ nginx-1.4.4/src/os/unix/ngx_user.c -@@ -31,8 +31,10 @@ - struct crypt_data cd; - - cd.initialized = 0; -+#ifdef __GLIBC__ - /* work around the glibc bug */ - cd.current_salt[0] = ~salt[0]; -+#endif - - value = crypt_r((char *) key, (char *) salt, &cd); - |