X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=coreutils%2Fcomm.c;h=772dafc4dfda1b32ee480f1fc05a3133c908291f;hb=843c5ef0f95e0a6f61f4e27d0355aca5e09ee6b1;hp=7471c3b318ff6e3a2919aee5ff46639ff51d526a;hpb=867a6080fe48b8d23c3845dcb875ba969eeee066;p=oweals%2Fbusybox.git diff --git a/coreutils/comm.c b/coreutils/comm.c index 7471c3b31..772dafc4d 100644 --- a/coreutils/comm.c +++ b/coreutils/comm.c @@ -42,7 +42,7 @@ static void writeline(char *line, int class) { if (class == 0) { if (!only_file_1) - return; + return; } else if (class == 1) { if (!only_file_2) return; @@ -71,7 +71,7 @@ static void cmp_files(char **infiles) int i; for (i = 0; i < 2; ++i) { - streams[i] = ((infiles[i][0] == '=' && infiles[1][1]) ? stdin : bb_xfopen(infiles[i], "r")); + streams[i] = ((infiles[i][0] == '=' && infiles[i][1]) ? stdin : bb_xfopen(infiles[i], "r")); fgets(thisline[i], LINE_LEN, streams[i]); }