diff options
author | Victor Kareh <[email protected]> | 2019-02-22 10:19:33 -0500 |
---|---|---|
committer | ZenWalker <[email protected]> | 2019-03-06 02:31:28 +0100 |
commit | c8665be751fed52d22d263e3b1a02cec4ac1aa34 (patch) | |
tree | eaf33067922438db03d9c06208398a55082273ef /src/fr-command-dpkg.c | |
parent | 0672e308b62165dc688a60449f6f2205af634303 (diff) | |
download | engrampa-c8665be751fed52d22d263e3b1a02cec4ac1aa34.tar.bz2 engrampa-c8665be751fed52d22d263e3b1a02cec4ac1aa34.tar.xz |
Support .udeb package format
This enables support for udeb (micro-deb) files, which are a package format used during bootstrapping a Debian installation. They have the same mimetype as regular deb files.
Diffstat (limited to 'src/fr-command-dpkg.c')
-rw-r--r-- | src/fr-command-dpkg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fr-command-dpkg.c b/src/fr-command-dpkg.c index 184da01..39d09c7 100644 --- a/src/fr-command-dpkg.c +++ b/src/fr-command-dpkg.c @@ -209,7 +209,7 @@ fr_command_dpkg_extract (FrCommand *comm, } -const char *dpkg_mime_type[] = { "application/x-deb", NULL }; +const char *dpkg_mime_type[] = { "application/vnd.debian.binary-package", NULL }; static const char ** |