~mrooney/ecryptfs/nautilus-integration

« back to all changes in this revision

Viewing changes to src/utils/ecryptfs_wrap_passphrase.c

  • Committer: Dustin Kirkland
  • Date: 2009-04-30 21:59:50 UTC
  • Revision ID: kirkland@canonical.com-20090430215950-3jn680ktxmsmiogm
  * debian/changelog, src/libecryptfs/cmd_ln_parser.c,
    src/libecryptfs/key_management.c, src/pam_ecryptfs/pam_ecryptfs.c,
    src/utils/ecryptfs_add_passphrase.c,
    src/utils/ecryptfs_insert_wrapped_passphrase_into_keyring.c,
    src/utils/ecryptfs_rewrap_passphrase.c,
    src/utils/ecryptfs_unwrap_passphrase.c,
    src/utils/ecryptfs_wrap_passphrase.c: silence some useless logging,
    LP: #313330

Signed-off-by: Dustin Kirkland <kirkland@canonical.com>

Show diffs side-by-side

added added

removed removed

Lines of Context:
78
78
        file = argv[1];
79
79
        rc = ecryptfs_read_salt_hex_from_rc(salt_hex);
80
80
        if (rc) {
81
 
                fprintf(stderr, "%s\n", ECRYPTFS_WARN_DEFAULT_SALT);
82
81
                from_hex(salt, ECRYPTFS_DEFAULT_SALT_HEX, ECRYPTFS_SALT_SIZE);
83
82
        } else
84
83
                from_hex(salt, salt_hex, ECRYPTFS_SALT_SIZE);