(LXR 0.9.4)
The source script refuses to enter a 2 letters dir
(such as 'fs' or 'mm' in linux kernel source tree).
The problem comes from a misuse of the dot in the
regexp used to filter out the .. (parent) dir.
Fixup : apply following patch (do not forget to apply
to the perl-mods
installed in the /usr/.../site_lisp perl directory if
you followd install directives)
--- LXR/Common.pm 2005-10-07 15:21:11.000000000 +0200
+++ LXR/Common.pm~ 2005-10-05 17:55:19.000000000 +0200
@@ -541,7 +541,7 @@
# First suppress anything after a dodgy
character
$path =~ s!(^[\w_+-,.%^/]+).*!$1!;
# Clean out /../
- while ($path =~ m!/\.\./!) {
+ while ($path =~ m!/../!) {
$path = s!/\.\./!/!g;
}
}
Nobody/Anonymous ( nobody ) - 2005-10-10 09:04
5
Closed
Duplicate
Nobody/Anonymous
Browsing
None
Public
|
Date: 2005-12-01 14:46 Logged In: YES |
|
Date: 2005-10-31 22:57 Logged In: YES |
| Field | Old Value | Date | By |
|---|---|---|---|
| resolution_id | None | 2005-10-31 22:57 | mbox |
| close_date | - | 2005-10-31 22:57 | mbox |
| status_id | Open | 2005-10-31 22:57 | mbox |