diff options
author | Judd Vinet <judd@archlinux.org> | 2006-07-15 01:15:07 +0200 |
---|---|---|
committer | Judd Vinet <judd@archlinux.org> | 2006-07-15 01:15:07 +0200 |
commit | 54008798efcc9646f622f6b052ecd83281d57cda (patch) | |
tree | f50aeec616897699713156468943dfc8f9923178 /lib/libalpm/trans.h | |
parent | 318e233cb38635581b14e081c22e369265c753b8 (diff) | |
download | pacman-54008798efcc9646f622f6b052ecd83281d57cda.tar.gz pacman-54008798efcc9646f622f6b052ecd83281d57cda.tar.xz |
Patch from FW: Better control over CTRL-C interruptions -- do not leave the DB in an inconsistent state
Diffstat (limited to 'lib/libalpm/trans.h')
-rw-r--r-- | lib/libalpm/trans.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libalpm/trans.h b/lib/libalpm/trans.h index 56b2e625..b60301c5 100644 --- a/lib/libalpm/trans.h +++ b/lib/libalpm/trans.h @@ -25,7 +25,9 @@ enum { STATE_IDLE = 0, STATE_INITIALIZED, STATE_PREPARED, - STATE_COMMITTED + STATE_COMMITTING, + STATE_COMMITTED, + STATE_INTERRUPTED }; #include "alpm.h" |