diff options
author | Dan McGee <dan@archlinux.org> | 2007-02-20 02:14:27 +0000 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2007-02-20 02:14:27 +0000 |
commit | 03f034ef0eacaca3611193007c24d6c2af94bdb8 (patch) | |
tree | d0b13f3e0c3cca0a07cd908e8d332697df03dff9 /TODO.dan | |
parent | 3f802fb38ed11a73f343191c0b3178d37d5e8a4d (diff) | |
download | pacman-03f034ef0eacaca3611193007c24d6c2af94bdb8.tar.xz |
* Updated conflict checking one last time. You can finally have a file move
from one package to another seemlessly (knock on wood). This is implemented
through the use of two skip lists in the trans struct- skip_add and
skip_remove, which replace the former trans->skiplist.
* Removed an unnecessary function parameter, added a necessary one.
* If a package has no backup files, print '(none)' under the heading so it is
more obvious.
* Updated my TODO list.
Diffstat (limited to 'TODO.dan')
-rw-r--r-- | TODO.dan | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -117,3 +117,9 @@ Fix inconsistency of args- _alpm_db_read, _alpm_db_write Resurrect test scripts, and add ones as needed. Testing by scripts > testing by hand. +Build a replacement for this, or at least standardize its use. We shouldn't +always need to pass handle->root around, it is constant. Something like char* +buildpath(file). + /* build the new entryname relative to handle->root */ + snprintf(filename, PATH_MAX, "%s%s", handle->root, entryname); + |