Update of /cvsroot/lxr/lxr
In directory sc8-pr-cvs1:/tmp/cvs-serv11875
Modified Files:
find
Log Message:
Fix bug 703803 search script glimpsedir path construction spotty.
Change the find path to $glimpsedir/$release to match search.
Index: find
===================================================================
RCS file: /cvsroot/lxr/lxr/find,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- find 18 Mar 2002 14:55:43 -0000 1.8
+++ find 5 Jun 2003 16:55:05 -0000 1.9
@@ -53,8 +53,8 @@
if ($searchtext ne "") {
- unless (open(FILELLISTING,$config->glimpsedir."/.glimpse_filenames")) {
- &warning("Could not open .glimpse_filenames.");
+ unless (open(FILELLISTING,$config->glimpsedir."/".$release."/.glimpse_filenames")) {
+ &warning("Could not open ".$config->glimpsedir."/$release/.glimpse_filenames.");
return;
}
print("<hr>\n");
|