X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=sbr%2Fmf.c;h=53752a34e2088af8dd5d4e1e2299e783e7a3fd3c;hb=fb0594cb913cab5e14e2c295b79eb48cc675bbbf;hp=45bbecd4c82b5d30981ed57c057d62350806cab9;hpb=5b792c4424571f05bc2008e3109797d18d7d00d1;p=mmh diff --git a/sbr/mf.c b/sbr/mf.c index 45bbecd..53752a3 100644 --- a/sbr/mf.c +++ b/sbr/mf.c @@ -54,10 +54,9 @@ getcpy(char *s) static int isat(char *p) { - return (strncmp(p, " AT ", 4) - && strncmp(p, " At ", 4) - && strncmp(p, " aT ", 4) - && strncmp(p, " at ", 4) ? FALSE : TRUE); + return (strncmp(p, " AT ", 4)!=0 && strncmp(p, " At ", 4)!=0 && + strncmp(p, " aT ", 4)!=0 && strncmp(p, " at ", 4)!=0 ? + FALSE : TRUE); }