mirror of
https://git.freebsd.org/ports.git
synced 2025-05-21 11:33:15 -04:00
PR: ports/149500 Submitted by: Frederic Culot <frederic_AT_culot dot org> Reviewed by: swell.k at gmail.com
11 lines
376 B
C
11 lines
376 B
C
--- diffstat.c.orig 2010-08-10 19:27:19.414564698 +0200
|
|
+++ diffstat.c 2010-08-10 19:28:49.625931506 +0200
|
|
@@ -1934,7 +1934,7 @@ is_compressed(const char *name)
|
|
} else if (len > 5 && !strcmp(name + len - 5, ".lzma")) {
|
|
which = dcLzma;
|
|
} else if (len > 3 && !strcmp(name + len - 3, ".xz")) {
|
|
- which = dcLzma;
|
|
+ which = dcXz;
|
|
} else {
|
|
which = dcNone;
|
|
}
|