From a14886ab4821893f43d0e66e2d2e1cb5a2151e36 Mon Sep 17 00:00:00 2001 From: Juan RP Date: Fri, 25 May 2012 14:28:12 +0200 Subject: [PATCH] xbps-bin: fix swapped args in check_pkg_symlinks. --- bin/xbps-bin/check_pkg_symlinks.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/xbps-bin/check_pkg_symlinks.c b/bin/xbps-bin/check_pkg_symlinks.c index 63c4aeb8..574b8a4e 100644 --- a/bin/xbps-bin/check_pkg_symlinks.c +++ b/bin/xbps-bin/check_pkg_symlinks.c @@ -94,9 +94,9 @@ check_pkg_symlinks(const char *pkgname, void *arg, bool *pkgdb_update) path = buf; if (strcmp(path, tgt)) { - xbps_error_printf("%s: modified symlink `%s', " - "target: `%s' (shall be: `%s')\n", - pkgname, file, tgt, path); + xbps_error_printf("%s: modified symlink `%s' " + "points to: `%s' (shall be: `%s')\n", + pkgname, file, path, tgt); test_broken = true; } path = NULL;