~ubuntu-branches/ubuntu/natty/file-roller/natty-updates

« back to all changes in this revision

Viewing changes to src/fr-command-lrzip.c

  • Committer: Bazaar Package Importer
  • Author(s): Michael Terry
  • Date: 2011-04-27 09:43:47 UTC
  • mfrom: (1.2.83 upstream)
  • Revision ID: james.westby@ubuntu.com-20110427094347-9o7qi47v18zdlunr
Tags: 2.32.2-0ubuntu0.1
* New upstream bugfix version
  - Fixes "File-Roller fails to extract password-protected rar-files"
    (LP: #732600)
* debian/patches/92_git_special_chars.patch:
  - Dropped, applied upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
51
51
        fdata->size = g_ascii_strtoull (get_last_field (line, 4), NULL, 10);
52
52
 
53
53
        struct stat st;
54
 
        time_t tt;
55
54
        if (stat (comm->filename, &st) == 0)
56
55
                fdata->modified = st.st_mtim.tv_sec;
57
56
        else
58
57
                time(&(fdata->modified));
59
 
        fdata->modified;
60
58
        fdata->encrypted = FALSE;
61
59
 
62
60
        char *new_fname = g_strdup (file_name_from_path (comm->filename));