Merge lp:~colin-king/ecryptfs/misc-fixes into lp:ecryptfs
Proposed by
Colin Ian King
Status: | Merged |
---|---|
Merged at revision: | 777 |
Proposed branch: | lp:~colin-king/ecryptfs/misc-fixes |
Merge into: | lp:ecryptfs |
Diff against target: |
234 lines (+41/-20) 9 files modified
src/libecryptfs/decision_graph.c (+2/-0) src/libecryptfs/key_management.c (+0/-1) src/libecryptfs/main.c (+2/-0) src/libecryptfs/module_mgr.c (+1/-1) src/utils/io.c (+2/-1) src/utils/mount.ecryptfs_private.c (+12/-5) tests/kernel/inotify/test.c (+16/-8) tests/kernel/trunc-file/test.c (+5/-3) tests/userspace/wrap-unwrap/test.c (+1/-1) |
To merge this branch: | bzr merge lp:~colin-king/ecryptfs/misc-fixes |
Related bugs: |
Reviewer | Review Type | Date Requested | Status |
---|---|---|---|
Tyler Hicks | Approve | ||
Review via email:
|
Description of the change
I've found a bunch of minor bugs which I've fixed up and I've given them a cursory check to see if they are OK and don't regress eCryptfs but I'd like somebody to eyeball them before merging if that's OK.
To post a comment you must log in.
Thanks, Colin! The only thing that caught my eye was the off_t to size_t changes. Since we're dealing with a file size, we should be using off_t rather than ssize_t (ssize_t wraps at 2GB on 32 bit machines). But, I see where other portions of that test use ssize_t so this change doesn't make us any worse off than what we already are at this point.