From 473a7d887ece74323a9d2d38e6c43f3da5fdc562 Mon Sep 17 00:00:00 2001 From: root Date: Wed, 17 Jul 1996 21:33:01 +0000 Subject: [PATCH] fixed bug where a long name was getting mapped to a long name CVS patchset: 882 CVS date: 1996/07/17 21:33:01 --- lib/rpmrc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/rpmrc.c b/lib/rpmrc.c index d599a7e..4aeeaca 100644 --- a/lib/rpmrc.c +++ b/lib/rpmrc.c @@ -336,8 +336,8 @@ static int addCanon(struct canonEntry **table, int *tableLen, char *line, /* From A B C entry */ /* Add B B C entry */ - t[1].name = strdup(t->name); - t[1].short_name = strdup(t->name); + t[1].name = strdup(t->short_name); + t[1].short_name = strdup(t->short_name); t[1].num = t->num; return 0; -- 2.7.4