summaryrefslogtreecommitdiff
path: root/src/upgrade.c
diff options
context:
space:
mode:
authorTimo Teräs <timo.teras@iki.fi>2019-06-05 09:32:29 +0300
committerTimo Teräs <timo.teras@iki.fi>2019-06-05 09:32:29 +0300
commitc3a93a4aa588f237690953fc74011c3bd00ed2ae (patch)
treef2d2921dc12fda6f399fe0d7233b6477a1774fda /src/upgrade.c
parentb0be9f610c02bb2d5e681a3904940d311e9de298 (diff)
downloadapk-tools-c3a93a4aa588f237690953fc74011c3bd00ed2ae.tar.gz
apk-tools-c3a93a4aa588f237690953fc74011c3bd00ed2ae.tar.bz2
apk-tools-c3a93a4aa588f237690953fc74011c3bd00ed2ae.tar.xz
apk-tools-c3a93a4aa588f237690953fc74011c3bd00ed2ae.zip
fix all applets to return -ENOTSUP if it's unrecognized
The return -1 seems to have been left over from earlier code, and could have been treated as -EPERM. This helps to fix the other command line handling that potentially require changing.
Diffstat (limited to 'src/upgrade.c')
-rw-r--r--src/upgrade.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/upgrade.c b/src/upgrade.c
index 14457b5..6c3eafa 100644
--- a/src/upgrade.c
+++ b/src/upgrade.c
@@ -42,7 +42,7 @@ static int option_parse_applet(void *ctx, struct apk_db_options *dbopts, int opt
uctx->solver_flags |= APK_SOLVERF_LATEST;
break;
default:
- return -1;
+ return -ENOTSUP;
}
return 0;
}