Update of /cvsroot/radmind/radmind
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv18986
Modified Files:
ktcheck.c
Log Message:
Correct parenthesis location to fix -C.
Index: ktcheck.c
===================================================================
RCS file: /cvsroot/radmind/radmind/ktcheck.c,v
retrieving revision 1.126
retrieving revision 1.127
diff -C2 -d -r1.126 -r1.127
*** ktcheck.c 3 Nov 2007 15:25:45 -0000 1.126
--- ktcheck.c 27 Nov 2007 14:01:03 -0000 1.127
***************
*** 169,173 ****
if ( strcmp( fsitem, base_kfile ) == 0 ||
( strncmp( kdir, path, strlen( path )) == 0
! && strcmp( base_kfile, de->d_name )) == 0 ) {
continue;
}
--- 169,173 ----
if ( strcmp( fsitem, base_kfile ) == 0 ||
( strncmp( kdir, path, strlen( path )) == 0
! && strcmp( base_kfile, de->d_name ) == 0 )) {
continue;
}
|