diff options
author | rbuj <[email protected]> | 2019-09-19 09:35:36 +0200 |
---|---|---|
committer | Victor Kareh <[email protected]> | 2019-10-01 22:35:24 -0400 |
commit | f6a3980e1a2d1024a4c3d7b09ac1e167ffb7980a (patch) | |
tree | d0cf875e1c768164103f623c457249244de59b64 /caja/caja-engrampa.c | |
parent | 519127b32ba4e9462022e23251de835cae90daf2 (diff) | |
download | engrampa-f6a3980e1a2d1024a4c3d7b09ac1e167ffb7980a.tar.bz2 engrampa-f6a3980e1a2d1024a4c3d7b09ac1e167ffb7980a.tar.xz |
Ar: Update MIME type and add magic numbers
Changes:
Replace application/x-ar with application/x-archive
ar magic number: "!<arch>\n"
deb magic number (Debian 0.93+): "!<arch>\ndebian-binary"
REF:
https://en.wikipedia.org/wiki/Ar_(Unix)
https://en.wikipedia.org/wiki/Deb_(file_format)
Test:
$ touch a && touch b && ar r test.ar a b && cp test.ar test-2.a
$ xdg-mime query filetype test.ar
application/x-archive
$ xdg-mime query filetype dftp_2.2-1.deb
application/vnd.debian.binary-package
$ gio info test.ar | grep content-type
standard::content-type: application/x-archive
standard::fast-content-type: application/x-archive
$ gio info dftp_2.2-1.deb | grep content-type
standard::content-type: application/vnd.debian.binary-package
standard::fast-content-type: application/vnd.debian.binary-package
$ hexdump -C -n 8 test.ar
00000000 21 3c 61 72 63 68 3e 0a |!<arch>.|
00000008
$ hexdump -C -n 21 dftp_2.2-1.deb
00000000 21 3c 61 72 63 68 3e 0a 64 65 62 69 61 6e 2d 62 |!<arch>.debian-b|
00000010 69 6e 61 72 79 |inary|
00000015
$ ./autogen.sh --prefix=/usr --disable-magic && make && sudo make install
Diffstat (limited to 'caja/caja-engrampa.c')
-rw-r--r-- | caja/caja-engrampa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/caja/caja-engrampa.c b/caja/caja-engrampa.c index 8e1a8f2..3667b5a 100644 --- a/caja/caja-engrampa.c +++ b/caja/caja-engrampa.c @@ -149,7 +149,7 @@ static struct { { "application/x-7z-compressed-tar", TRUE }, { "application/x-ace", TRUE }, { "application/x-alz", TRUE }, - { "application/x-ar", TRUE }, + { "application/x-archive", TRUE }, { "application/x-arj", TRUE }, { "application/x-brotli", TRUE }, { "application/x-brotli-compressed-tar", TRUE }, |