summaryrefslogtreecommitdiffstats
path: root/libopkg/opkg_configure.c
diff options
context:
space:
mode:
Diffstat (limited to 'libopkg/opkg_configure.c')
-rw-r--r--libopkg/opkg_configure.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/libopkg/opkg_configure.c b/libopkg/opkg_configure.c
index 2c22bfc..154d3e6 100644
--- a/libopkg/opkg_configure.c
+++ b/libopkg/opkg_configure.c
@@ -21,7 +21,8 @@
#include "opkg_message.h"
#include "opkg_cmd.h"
-int opkg_configure(opkg_conf_t *conf, pkg_t *pkg)
+int
+opkg_configure(pkg_t *pkg)
{
int err;
@@ -31,9 +32,9 @@ int opkg_configure(opkg_conf_t *conf, pkg_t *pkg)
/* DPKG_INCOMPATIBILITY:
dpkg actually includes a version number to this script call */
- err = pkg_run_script(conf, pkg, "postinst", "configure");
+ err = pkg_run_script(pkg, "postinst", "configure");
if (err) {
- opkg_message(conf, OPKG_ERROR, "ERROR: %s.postinst returned %d\n", pkg->name, err);
+ opkg_msg(ERROR, "%s.postinst returned %d.\n", pkg->name, err);
return err;
}