Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 916785 Details for
Bug 948211
www-servers/nginx eappy_user is called in ${S}, preventing user-patching of nginx modules (patch attached)
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Example not working user patch (before nginx ebuild is patched)
0001-Fix-for-properly-dealing-with-Unix-hidden-folders.patch (text/plain), 1.08 KB, created by
Fedja Beader
on 2025-01-16 22:09:54 UTC
(
hide
)
Description:
Example not working user patch (before nginx ebuild is patched)
Filename:
MIME Type:
Creator:
Fedja Beader
Created:
2025-01-16 22:09:54 UTC
Size:
1.08 KB
patch
obsolete
>From 51185d0aa980bafcd02f5a039cf6e46e75b35935 Mon Sep 17 00:00:00 2001 >From: Alexandre Jousset <mid@gtmp.org> >Date: Thu, 4 Nov 2021 00:55:59 +0100 >Subject: [PATCH 1/3] Fix for properly dealing with Unix hidden folders > >See arut/nginx-dav-ext-module#41 and >https://github.com/arut/nginx-dav-ext-module/pull/62 >--- > ngx_http_dav_ext_module.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >/tmp/portage/www-servers/nginx-1.26.2-r6/work/nginx-1.26.2' >diff --git a/../nginx-dav-ext-module-3.0.0/ngx_http_dav_ext_module.c b/../nginx-dav-ext-module-3.0.0/ngx_http_dav_ext_module.c >index cdb213d..5f14246 100644 >--- a/../nginx-dav-ext-module-3.0.0/ngx_http_dav_ext_module.c >+++ b/../nginx-dav-ext-module-3.0.0/ngx_http_dav_ext_module.c >@@ -862,7 +862,7 @@ ngx_http_dav_ext_propfind(ngx_http_request_t *r, ngx_uint_t props) > name.len = ngx_de_namelen(&dir); > name.data = ngx_de_name(&dir); > >- if (name.data[0] == '.') { >+ if ((name.len == 1 && name.data[0] == '.') || (name.len == 2 && name.data[0] == '.' && name.data[1] == '.')) { > continue; > } > >-- >2.41.0 >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 948211
:
916784
| 916785 |
916786