mfc mad_print compare

This commit is contained in:
Philippe Teuwen 2020-06-09 18:45:37 +02:00
parent a93e54374e
commit 242c276bfb

View file

@ -105,10 +105,14 @@ static int mad_print(json_t **xroot, char *mad, bool verbose, char *out) {
elm = data;
break;
}
char lmad[strlen(mad)];
char lfmad[strlen(fmad) + 1];
strcpy(lfmad, fmad);
str_lower(lfmad);
char lmad[strlen(mad) + 1];
strcpy(lmad, mad);
str_lower(lmad);
if (strcmp(lmad, fmad) == 0) {
if (strcmp(lmad, lfmad) == 0) {
elm = data;
break;
}