Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F154236601
D55113.id171223.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
2 KB
Referenced Files
None
Subscribers
None
D55113.id171223.diff
View Options
diff --git a/usr.bin/diff/diffdir.c b/usr.bin/diff/diffdir.c
--- a/usr.bin/diff/diffdir.c
+++ b/usr.bin/diff/diffdir.c
@@ -41,8 +41,6 @@
char *, size_t, int);
static void print_only(const char *, size_t, const char *);
-#define d_status d_type /* we need to store status for -l */
-
struct inode {
dev_t dev;
ino_t ino;
@@ -258,7 +256,6 @@
flags |= D_EMPTY1;
memset(&stb1, 0, sizeof(stb1));
}
-
if (lstat(path2, &stb2) != 0) {
if (!Nflag || errno != ENOENT) {
warn("%s", path2);
@@ -315,7 +312,6 @@
flags |= D_EMPTY1;
memset(&stb1, 0, sizeof(stb1));
}
-
if (stat(path2, &stb2) != 0) {
if (!Nflag || errno != ENOENT) {
warn("%s", path2);
@@ -328,6 +324,8 @@
if (stb1.st_mode == 0)
stb1.st_mode = stb2.st_mode;
}
+ if (stb1.st_dev == stb2.st_dev && stb1.st_ino == stb2.st_ino)
+ return;
if (S_ISDIR(stb1.st_mode) && S_ISDIR(stb2.st_mode)) {
if (rflag)
diffdir(path1, path2, flags);
@@ -337,12 +335,12 @@
return;
}
if (!S_ISREG(stb1.st_mode) && !S_ISDIR(stb1.st_mode))
- dp->d_status = D_SKIPPED1;
+ rc = D_SKIPPED1;
else if (!S_ISREG(stb2.st_mode) && !S_ISDIR(stb2.st_mode))
- dp->d_status = D_SKIPPED2;
+ rc = D_SKIPPED2;
else
- dp->d_status = diffreg(path1, path2, flags, 0);
- print_status(dp->d_status, path1, path2, "");
+ rc = diffreg(path1, path2, flags, 0);
+ print_status(rc, path1, path2, "");
}
/*
diff --git a/usr.bin/diff/diffreg.c b/usr.bin/diff/diffreg.c
--- a/usr.bin/diff/diffreg.c
+++ b/usr.bin/diff/diffreg.c
@@ -372,6 +372,9 @@
goto closem;
}
+ if (stb1.st_dev == stb2.st_dev && stb1.st_ino == stb2.st_ino)
+ goto closem;
+
if (lflag)
pr = start_pr(file1, file2);
diff --git a/usr.bin/diff/tests/diff_test.sh b/usr.bin/diff/tests/diff_test.sh
--- a/usr.bin/diff/tests/diff_test.sh
+++ b/usr.bin/diff/tests/diff_test.sh
@@ -432,6 +432,24 @@
atf_check diff -Astone -rul a b
}
+same_head()
+{
+ atf_set "descr" "Don't diff a file or directory with itself"
+}
+same_body()
+{
+ local n=256
+ mkdir a
+ for hi in $(jot -w%02x $n 0) ; do
+ mkdir a/$hi
+ for lo in $(jot -w%02x $n 0) ; do
+ echo "$hi$lo" >a/$hi/$lo
+ done
+ done
+ ln -s a b
+ atf_check timeout 1s diff -rqs a b
+}
+
atf_init_test_cases()
{
atf_add_test_case simple
@@ -462,4 +480,5 @@
atf_add_test_case bigc
atf_add_test_case bigu
atf_add_test_case prleak
+ atf_add_test_case same
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Tue, Apr 28, 8:09 AM (7 h, 14 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
32260605
Default Alt Text
D55113.id171223.diff (2 KB)
Attached To
Mode
D55113: diff: Don't compare a file or directory to itself
Attached
Detach File
Event Timeline
Log In to Comment