One possible solution:
fr-command-7z.c:
Original:
--------------
if (is_mime_type (comm->mime_type, "application/zip"))
                fr_process_add_arg (comm->process, "-tzip");

        fr_process_add_arg (comm->process, "-bd");
        fr_process_add_arg (comm->process, "-y");
        fr_process_add_arg (comm->process, "-l");
        add_password_arg (comm, comm->password, FALSE);
        if ((comm->password != NULL) && (*comm->password != 0) && 
comm->encrypt_header)
                fr_process_add_arg (comm->process, "-mhe=on");
--------------

Change:
--------------
        fr_process_add_arg (comm->process, "-bd");
        fr_process_add_arg (comm->process, "-y");
        fr_process_add_arg (comm->process, "-l");
        add_password_arg (comm, comm->password, FALSE);

if (is_mime_type (comm->mime_type, "application/zip"))
                fr_process_add_arg (comm->process, "-tzip");
else
        if ((comm->password != NULL) && (*comm->password != 0) && 
comm->encrypt_header)
                fr_process_add_arg (comm->process, "-mhe=on");
--------------

-- 
encrypt_header is left enabled when creating zip archives
https://bugs.launchpad.net/bugs/464324
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to file-roller in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

Reply via email to