jim         97/01/06 10:10:23

  Modified:    src/helpers  PrintPath
  Log:
  Minor change... don't count dirs
  
  Revision  Changes    Path
  1.5       +1 -1      apache/src/helpers/PrintPath
  
  Index: PrintPath
  ===================================================================
  RCS file: /export/home/cvs/apache/src/helpers/PrintPath,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -C3 -r1.4 -r1.5
  *** PrintPath 1997/01/06 17:31:28     1.4
  --- PrintPath 1997/01/06 18:10:23     1.5
  ***************
  *** 15,21 ****
          s/:$/:./
          s/:/ /g' `
    do
  !     if [ -r $path/$1 ]; then
            if [ "$echo" = "yes" ]; then
            echo $path/$1
        fi
  --- 15,21 ----
          s/:$/:./
          s/:/ /g' `
    do
  !     if [ -r $path/$1 ] && [ ! -d $path/$1 ]; then
            if [ "$echo" = "yes" ]; then
            echo $path/$1
        fi
  
  
  

Reply via email to