diff options
author | Thierry Vignaud <tv@mageia.org> | 2012-06-28 20:57:27 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mageia.org> | 2012-06-28 20:57:27 +0000 |
commit | 3b7786e94aa98ccc7ffc21de5d277fc3ea007b47 (patch) | |
tree | 1a62478bae5bc3e6019d67ac40d5082cf14ae808 | |
parent | a0fb4406af6dc657bc7fcb911266f832bdef28e3 (diff) | |
download | perl-URPM-3b7786e94aa98ccc7ffc21de5d277fc3ea007b47.tar perl-URPM-3b7786e94aa98ccc7ffc21de5d277fc3ea007b47.tar.gz perl-URPM-3b7786e94aa98ccc7ffc21de5d277fc3ea007b47.tar.bz2 perl-URPM-3b7786e94aa98ccc7ffc21de5d277fc3ea007b47.tar.xz perl-URPM-3b7786e94aa98ccc7ffc21de5d277fc3ea007b47.zip |
(rpmtag_from_string) really enable to traverse rpm db by fullname
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | URPM.xs | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -1,3 +1,5 @@ +- really enable to traverse rpm db by fullname + Version 4.9 - 25 June 2012 - fix setting rflags on packages (mga#6532) @@ -1330,7 +1330,7 @@ rpmtag_from_string(char *tag) else if (!strcmp(tag, "path")) return RPMDBI_BASENAMES; else if (!strcmp(tag, "nvra")) - return RPMTAG_NVRA; + return RPMDBI_LABEL; else croak("unknown tag [%s]", tag); } |