diff options
author | Timo Teras <timo.teras@iki.fi> | 2009-07-22 14:24:19 +0300 |
---|---|---|
committer | Timo Teras <timo.teras@iki.fi> | 2009-07-22 14:24:19 +0300 |
commit | 0a7991f70dcfe9f8e05f6a4a4a59af21be878915 (patch) | |
tree | 9c6ef07e6f594b524bd1fc4746a103ab3d93d926 /src/apk.c | |
parent | 0dadc27ce1cfe84585a747d57e7d3bcafc1069eb (diff) | |
download | apk-tools-0a7991f70dcfe9f8e05f6a4a4a59af21be878915.tar.gz apk-tools-0a7991f70dcfe9f8e05f6a4a4a59af21be878915.tar.bz2 apk-tools-0a7991f70dcfe9f8e05f6a4a4a59af21be878915.tar.xz apk-tools-0a7991f70dcfe9f8e05f6a4a4a59af21be878915.zip |
various: misc fixes
- error codes for verification failure types
- fix some fdb corruption on file migration
- combine some dependency parsing code
- fix versioned dependencies
Diffstat (limited to 'src/apk.c')
-rw-r--r-- | src/apk.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -363,7 +363,7 @@ int main(int argc, char **argv) } r = applet->main(ctx, argc, argv); - if (r == -100) + if (r == -EINVAL) return usage(applet); return r; } |