aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--coreutils/diff.c26
1 files changed, 14 insertions, 12 deletions
diff --git a/coreutils/diff.c b/coreutils/diff.c
index 072e4bc20..923239ab1 100644
--- a/coreutils/diff.c
+++ b/coreutils/diff.c
@@ -907,13 +907,12 @@ static int diffreg(char *ofile1, char *ofile2, int flags)
907 if (LONE_DASH(file1) && LONE_DASH(file2)) 907 if (LONE_DASH(file1) && LONE_DASH(file2))
908 goto closem; 908 goto closem;
909 909
910 f1 = stdin; 910 f1 = f2 = stdin;
911 if (flags & D_EMPTY1) 911 if (flags & D_EMPTY1)
912 f1 = xfopen(bb_dev_null, "r"); 912 f1 = xfopen(bb_dev_null, "r");
913 else if (NOT_LONE_DASH(file1)) 913 else if (NOT_LONE_DASH(file1))
914 f1 = xfopen(file1, "r"); 914 f1 = xfopen(file1, "r");
915 915
916 f2 = stdin;
917 if (flags & D_EMPTY2) 916 if (flags & D_EMPTY2)
918 f2 = xfopen(bb_dev_null, "r"); 917 f2 = xfopen(bb_dev_null, "r");
919 else if (NOT_LONE_DASH(file2)) 918 else if (NOT_LONE_DASH(file2))
@@ -1166,8 +1165,8 @@ static void diffdir(char *p1, char *p2)
1166int diff_main(int argc, char **argv) 1165int diff_main(int argc, char **argv)
1167{ 1166{
1168 int gotstdin = 0; 1167 int gotstdin = 0;
1169
1170 char *U_opt; 1168 char *U_opt;
1169 char *f1, *f2;
1171 llist_t *L_arg = NULL; 1170 llist_t *L_arg = NULL;
1172 1171
1173 opt_complementary = "L::"; 1172 opt_complementary = "L::";
@@ -1212,34 +1211,37 @@ int diff_main(int argc, char **argv)
1212 bb_error_msg("missing filename"); 1211 bb_error_msg("missing filename");
1213 bb_show_usage(); 1212 bb_show_usage();
1214 } 1213 }
1215 if (LONE_DASH(argv[0])) { 1214
1215 f1 = argv[0];
1216 f2 = argv[1];
1217 if (LONE_DASH(f1)) {
1216 fstat(STDIN_FILENO, &stb1); 1218 fstat(STDIN_FILENO, &stb1);
1217 gotstdin = 1; 1219 gotstdin = 1;
1218 } else 1220 } else
1219 xstat(argv[0], &stb1); 1221 xstat(f1, &stb1);
1220 if (LONE_DASH(argv[1])) { 1222 if (LONE_DASH(f2)) {
1221 fstat(STDIN_FILENO, &stb2); 1223 fstat(STDIN_FILENO, &stb2);
1222 gotstdin = 1; 1224 gotstdin = 1;
1223 } else 1225 } else
1224 xstat(argv[1], &stb2); 1226 xstat(f2, &stb2);
1225 if (gotstdin && (S_ISDIR(stb1.st_mode) || S_ISDIR(stb2.st_mode))) 1227 if (gotstdin && (S_ISDIR(stb1.st_mode) || S_ISDIR(stb2.st_mode)))
1226 bb_error_msg_and_die("can't compare - to a directory"); 1228 bb_error_msg_and_die("can't compare - to a directory");
1227 if (S_ISDIR(stb1.st_mode) && S_ISDIR(stb2.st_mode)) { 1229 if (S_ISDIR(stb1.st_mode) && S_ISDIR(stb2.st_mode)) {
1228#if ENABLE_FEATURE_DIFF_DIR 1230#if ENABLE_FEATURE_DIFF_DIR
1229 diffdir(argv[0], argv[1]); 1231 diffdir(f1, f2);
1230#else 1232#else
1231 bb_error_msg_and_die("directory comparison not supported"); 1233 bb_error_msg_and_die("directory comparison not supported");
1232#endif 1234#endif
1233 } else { 1235 } else {
1234 if (S_ISDIR(stb1.st_mode)) { 1236 if (S_ISDIR(stb1.st_mode)) {
1235 argv[0] = concat_path_file(argv[0], argv[1]); 1237 f1 = concat_path_file(f1, f2);
1236 xstat(argv[0], &stb1); 1238 xstat(f1, &stb1);
1237 } 1239 }
1238 if (S_ISDIR(stb2.st_mode)) { 1240 if (S_ISDIR(stb2.st_mode)) {
1239 argv[1] = concat_path_file(argv[1], argv[0]); 1241 f2 = concat_path_file(f2, f1);
1240 xstat(argv[1], &stb2); 1242 xstat(argv[1], &stb2);
1241 } 1243 }
1242 print_status(diffreg(argv[0], argv[1], 0), argv[0], argv[1], NULL); 1244 print_status(diffreg(f1, f2, 0), f1, f2, NULL);
1243 } 1245 }
1244 return status; 1246 return status;
1245} 1247}