summaryrefslogtreecommitdiffstats
path: root/libopkg
diff options
context:
space:
mode:
Diffstat (limited to 'libopkg')
-rw-r--r--libopkg/opkg_conf.h2
-rw-r--r--libopkg/opkg_install.c2
-rw-r--r--libopkg/pkg_depends.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/libopkg/opkg_conf.h b/libopkg/opkg_conf.h
index 0925b81..6e7aa7d 100644
--- a/libopkg/opkg_conf.h
+++ b/libopkg/opkg_conf.h
@@ -74,7 +74,7 @@ struct opkg_conf
int force_removal_of_dependent_packages;
int force_removal_of_essential_packages;
int check_signature;
- int nodeps; /* do not follow dependences */
+ int nodeps; /* do not follow dependencies */
char *offline_root;
int query_all;
int verbosity;
diff --git a/libopkg/opkg_install.c b/libopkg/opkg_install.c
index e014d72..72c63ab 100644
--- a/libopkg/opkg_install.c
+++ b/libopkg/opkg_install.c
@@ -1237,7 +1237,7 @@ opkg_install_pkg(pkg_t *pkg, int from_upgrade)
pkg->state_want = SW_INSTALL;
if (old_pkg){
- old_pkg->state_want = SW_DEINSTALL; /* needed for check_data_file_clashes of dependences */
+ old_pkg->state_want = SW_DEINSTALL; /* needed for check_data_file_clashes of dependencies */
}
err = check_conflicts_for(pkg);
diff --git a/libopkg/pkg_depends.c b/libopkg/pkg_depends.c
index 0e52d31..ee5e9b6 100644
--- a/libopkg/pkg_depends.c
+++ b/libopkg/pkg_depends.c
@@ -50,7 +50,7 @@ static int pkg_constraint_satisfied(pkg_t *pkg, void *cdata)
return 0;
}
-/* returns ndependences or negative error value */
+/* returns ndependencies or negative error value */
int
pkg_hash_fetch_unsatisfied_dependencies(pkg_t * pkg, pkg_vec_t *unsatisfied,
char *** unresolved)