Update of /cvsroot/radmind/radmind
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24552
Modified Files:
twhich.c
Log Message:
Using pathcasecmp so -I is respected.
Index: twhich.c
===================================================================
RCS file: /cvsroot/radmind/radmind/twhich.c,v
retrieving revision 1.40
retrieving revision 1.41
diff -C2 -d -r1.40 -r1.41
*** twhich.c 7 Feb 2006 18:04:13 -0000 1.40
--- twhich.c 12 Apr 2006 18:37:47 -0000 1.41
***************
*** 124,128 ****
}
! while (( cmp = pathcmp( tran->t_pinfo.pi_name, pattern )) < 0 ) {
transcript_parse( tran );
if ( tran->t_eof ) {
--- 124,129 ----
}
! while (( cmp = pathcasecmp( tran->t_pinfo.pi_name,
! pattern, case_sensitive )) < 0 ) {
transcript_parse( tran );
if ( tran->t_eof ) {
|