Quellcode durchsuchen

Fixed a bug: ack could not see the difference between ".mod" and ".m".
This is corrected.

ceriel vor 38 Jahren
Ursprung
Commit
84f0869fde
1 geänderte Dateien mit 6 neuen und 4 gelöschten Zeilen
  1. 6 4
      util/ack/scan.c

+ 6 - 4
util/ack/scan.c

@@ -200,11 +200,13 @@ int satisfy(trafo,suffix) register trf *trafo; char *suffix ; {
 			fuerror("Illegal input suffix entry for %s",
 				trafo->t_name) ;
 		}
-		l_char=index(f_char+1,SUFCHAR);
-		if ( l_char ? strncmp(f_char,suffix,l_char-f_char)==0 :
-			      strcmp(f_char,suffix)==0 ) {
-			return 1 ;
+		l_char=strindex(f_char+1,SUFCHAR);
+		if ( l_char ) *l_char = 0;
+		if ( strcmp(f_char,suffix)==0 ) {
+			if ( l_char ) *l_char = SUFCHAR;
+			return 1;
 		}
+		if ( l_char ) *l_char = SUFCHAR;
 	}
 	return 0 ;
 }