summaryrefslogtreecommitdiffstats
path: root/libopkg/pkg_parse.c
diff options
context:
space:
mode:
authorgraham.gower <graham.gower@e8e0d7a0-c8d9-11dd-a880-a1081c7ac358>2009-11-12 17:28:03 (EST)
committer graham.gower <graham.gower@e8e0d7a0-c8d9-11dd-a880-a1081c7ac358>2009-11-12 17:28:03 (EST)
commit1e92bab925599c6162c7824d20ec70fca6f9fe59 (patch)
tree4e713e3611a229a2f180992881700747ec0d7647 /libopkg/pkg_parse.c
parentd6c3cf0a6d44a63adb7b124af566cef625448ec9 (diff)
Fix copy/pasto in error message.
git-svn-id: http://opkg.googlecode.com/svn/trunk@292 e8e0d7a0-c8d9-11dd-a880-a1081c7ac358
Diffstat (limited to 'libopkg/pkg_parse.c')
-rw-r--r--libopkg/pkg_parse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libopkg/pkg_parse.c b/libopkg/pkg_parse.c
index fb479c3..246705e 100644
--- a/libopkg/pkg_parse.c
+++ b/libopkg/pkg_parse.c
@@ -90,7 +90,7 @@ parse_status(pkg_t *pkg, const char *sstr)
if (sscanf(sstr, "Status: %63s %63s %63s",
sw_str, sf_str, ss_str) != 3) {
- fprintf(stderr, "%s: failed to parse Conffiles line for %s\n",
+ fprintf(stderr, "%s: failed to parse Status line for %s\n",
__FUNCTION__, pkg->name);
return;
}