smb2www parses download links wrong (especially with deeper trees)
Bug #871884 reported by
Maarten Fonville
This bug affects 1 person
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
smb2www (Ubuntu) |
New
|
Undecided
|
Unassigned |
Bug Description
Because of the wrong parsing Apache will give an error like:
NT_STATUS_
while the actual URL that should be retrieved is:
\\hostname\
The error can be resolved by changing in the file /usr/share/
$file =~ s/^(.*)
to
$file =~ s/^(.*)
(and also it is useful to afterwards change all the forward slashes of the directories to backslashes to prevent other irregular problems:
$file =~ s/\//\\/g ;
)
summary: |
- smb2www parses download links sometimes wrong (especially with deeper - trees) + smb2www parses download links wrong (especially with deeper trees) |
To post a comment you must log in.