[Debian-l10n-commits] r2860 - in /dl10n/trunk: Changelog lib/Debian/Pkg/Tar.pm

nekral-guest at users.alioth.debian.org nekral-guest at users.alioth.debian.org
Sun Feb 12 13:16:58 UTC 2012


Author: nekral-guest
Date: Sun Feb 12 13:16:58 2012
New Revision: 2860

URL: http://svn.debian.org/wsvn/?sc=1&rev=2860
Log:
	* lib/Debian/Pkg/Tar.pm: files with type 2 are links. They are not
	supported, but this might be useful in debug mode to understand
	why files may not be supported (e.g. debian/control in gcc-mingw-w64)

Modified:
    dl10n/trunk/Changelog
    dl10n/trunk/lib/Debian/Pkg/Tar.pm

Modified: dl10n/trunk/Changelog
URL: http://svn.debian.org/wsvn/dl10n/trunk/Changelog?rev=2860&op=diff
==============================================================================
--- dl10n/trunk/Changelog (original)
+++ dl10n/trunk/Changelog Sun Feb 12 13:16:58 2012
@@ -1,3 +1,9 @@
+2012-02-12  Nicolas François  <nicolas.francois at centraliens.net>
+
+	* lib/Debian/Pkg/Tar.pm: files with type 2 are links. They are not
+	supported, but this might be useful in debug mode to understand
+	why files may not be supported (e.g. debian/control in gcc-mingw-w64)
+
 2012-02-12  Nicolas François  <nicolas.francois at centraliens.net>
 
 	* doc/dl10n-spider_add-new-language.txt: Added.

Modified: dl10n/trunk/lib/Debian/Pkg/Tar.pm
URL: http://svn.debian.org/wsvn/dl10n/trunk/lib/Debian/Pkg/Tar.pm?rev=2860&op=diff
==============================================================================
--- dl10n/trunk/lib/Debian/Pkg/Tar.pm (original)
+++ dl10n/trunk/lib/Debian/Pkg/Tar.pm Sun Feb 12 13:16:58 2012
@@ -418,6 +418,8 @@
                         $type = "file";
                 } elsif ($type == 5) {
                         $type = "dir";
+                } elsif ($type == 2) {
+                        $type = "link";
                 } else {
                         $type = "unknown";
                 }




More information about the Debian-l10n-commits mailing list