ui-snapshot.c: Do not reinvent suffixcmp()
Use suffixcmp() from Git instead of reimplementing it. This is a preparation for moving to ends_with() in Git 1.8.6. Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de>
Αυτή η υποβολή περιλαμβάνεται σε:
		 Lukas Fleischer
					Lukas Fleischer
				
			
				
					υποβλήθηκε από
					
						 Jason A. Donenfeld
						Jason A. Donenfeld
					
				
			
			
				
	
			
			
			 Jason A. Donenfeld
						Jason A. Donenfeld
					
				
			
						γονέας
						
							f04b8d5c99
						
					
				
				
					υποβολή
					e711679618
				
			| @@ -98,14 +98,9 @@ const struct cgit_snapshot_format cgit_snapshot_formats[] = { | |||||||
| static const struct cgit_snapshot_format *get_format(const char *filename) | static const struct cgit_snapshot_format *get_format(const char *filename) | ||||||
| { | { | ||||||
| 	const struct cgit_snapshot_format *fmt; | 	const struct cgit_snapshot_format *fmt; | ||||||
| 	int fl, sl; |  | ||||||
|  |  | ||||||
| 	fl = strlen(filename); |  | ||||||
| 	for (fmt = cgit_snapshot_formats; fmt->suffix; fmt++) { | 	for (fmt = cgit_snapshot_formats; fmt->suffix; fmt++) { | ||||||
| 		sl = strlen(fmt->suffix); | 		if (!suffixcmp(filename, fmt->suffix)) | ||||||
| 		if (sl >= fl) |  | ||||||
| 			continue; |  | ||||||
| 		if (!strcmp(fmt->suffix, filename + fl - sl)) |  | ||||||
| 			return fmt; | 			return fmt; | ||||||
| 	} | 	} | ||||||
| 	return NULL; | 	return NULL; | ||||||
|   | |||||||
		Αναφορά σε νέο ζήτημα
	
	Block a user