diff options
author | Renato Botelho <renato@netgate.com> | 2016-10-12 11:41:26 -0300 |
---|---|---|
committer | Renato Botelho <renato@netgate.com> | 2016-10-12 11:41:26 -0300 |
commit | cb642130dfc50717bb970a104c44aa7690930a38 (patch) | |
tree | c67f108534217a209198c6b201949ecc73acaba3 /usr.bin/patch/common.h | |
parent | 5dd7ab172435dc99e1abc1f7d73fd5e720050bbc (diff) | |
parent | cd04fbc5e631c6b3e80a14eb7044c3be35fba2d2 (diff) | |
download | FreeBSD-src-cb642130dfc50717bb970a104c44aa7690930a38.zip FreeBSD-src-cb642130dfc50717bb970a104c44aa7690930a38.tar.gz |
Merge remote-tracking branch 'origin/stable/11' into devel-11
Diffstat (limited to 'usr.bin/patch/common.h')
-rw-r--r-- | usr.bin/patch/common.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/usr.bin/patch/common.h b/usr.bin/patch/common.h index 2cdeaff..1e69ee9 100644 --- a/usr.bin/patch/common.h +++ b/usr.bin/patch/common.h @@ -47,10 +47,9 @@ /* handy definitions */ -#define strNE(s1,s2) (strcmp(s1, s2)) -#define strEQ(s1,s2) (!strcmp(s1, s2)) -#define strnNE(s1,s2,l) (strncmp(s1, s2, l)) -#define strnEQ(s1,s2,l) (!strncmp(s1, s2, l)) +#define strEQ(s1,s2) (strcmp(s1, s2) == 0) +#define strnNE(s1,s2,l) (strncmp(s1, s2, l) != 0) +#define strnEQ(s1,s2,l) (strncmp(s1, s2, l) == 0) /* typedefs */ |