diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-12-14 11:27:58 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-12-14 11:27:58 +0000 |
commit | 56b956952ec8bf6cd277a68107c1188e6b219b39 (patch) | |
tree | b963999fc54eddb65f1929b894f868e24851fc9c | |
parent | f7b0d4a3e5f06bd209f074f09c3a1431bf89f447 (diff) | |
download | busybox-w32-56b956952ec8bf6cd277a68107c1188e6b219b39.tar.gz busybox-w32-56b956952ec8bf6cd277a68107c1188e6b219b39.tar.bz2 busybox-w32-56b956952ec8bf6cd277a68107c1188e6b219b39.zip |
- minor shrinkage
-rw-r--r-- | coreutils/diff.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/coreutils/diff.c b/coreutils/diff.c index 7a9f8c7dd..2ed26babe 100644 --- a/coreutils/diff.c +++ b/coreutils/diff.c | |||
@@ -1105,10 +1105,12 @@ static void diffdir(char *p1, char *p2) | |||
1105 | 1105 | ||
1106 | /* Check for trailing slashes. */ | 1106 | /* Check for trailing slashes. */ |
1107 | 1107 | ||
1108 | if (p1[strlen(p1) - 1] == '/') | 1108 | dp1 = last_char_is(p1, '/'); |
1109 | p1[strlen(p1) - 1] = '\0'; | 1109 | if (dp1 != NULL) |
1110 | if (p2[strlen(p2) - 1] == '/') | 1110 | *dp1 = '\0'; |
1111 | p2[strlen(p2) - 1] = '\0'; | 1111 | dp2 = last_char_is(p2, '/'); |
1112 | if (dp2 != NULL) | ||
1113 | *dp2 = '\0'; | ||
1112 | 1114 | ||
1113 | /* Get directory listings for p1 and p2. */ | 1115 | /* Get directory listings for p1 and p2. */ |
1114 | 1116 | ||