1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-02 12:20:51 +00:00

Fix a typo, that in some cases may lead to incorrect packages reordering.

This commit is contained in:
Maxim Sobolev 2001-02-21 02:01:10 +00:00
parent d82b3e319a
commit 639a9162ad
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=72782

View File

@ -69,7 +69,7 @@ pkg_perform(char **pkgs)
* Another iteration requred to check if new pkgs[i]
* itself has any packages that depend on it
*/
j--;
j = i + 1;
}
}
err_cnt += pkg_do(pkgs[i]);