diff options
-rw-r--r-- | usr.bin/cmp/cmp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/cmp/cmp.c b/usr.bin/cmp/cmp.c index cfa43fe..73e89e4 100644 --- a/usr.bin/cmp/cmp.c +++ b/usr.bin/cmp/cmp.c @@ -157,7 +157,7 @@ endargs: if (special) c_special(fd1, file1, skip1, fd2, file2, skip2); - else + else { if (zflag && sb1.st_size != sb2.st_size) { if (!sflag) (void) printf("%s %s differ: size\n", @@ -166,6 +166,7 @@ endargs: } c_regular(fd1, file1, skip1, sb1.st_size, fd2, file2, skip2, sb2.st_size); + } exit(0); } |