diff options
author | Francois Pons <fpons@mandriva.com> | 2003-07-10 16:09:45 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2003-07-10 16:09:45 +0000 |
commit | ccf387bc861528d92e96017ea0263a59f6e94026 (patch) | |
tree | 3e632ef4b0a700b3ee5c7c1a24481093a9d6ad1b | |
parent | 7f56f14f3fc39871a1fa3340ea5ddab67327b9a1 (diff) | |
download | perl-URPM-ccf387bc861528d92e96017ea0263a59f6e94026.tar perl-URPM-ccf387bc861528d92e96017ea0263a59f6e94026.tar.gz perl-URPM-ccf387bc861528d92e96017ea0263a59f6e94026.tar.bz2 perl-URPM-ccf387bc861528d92e96017ea0263a59f6e94026.tar.xz perl-URPM-ccf387bc861528d92e96017ea0263a59f6e94026.zip |
fixed SvPV typos.
-rw-r--r-- | URPM.xs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2891,7 +2891,7 @@ Urpm_unsatisfied_requires2(urpm, db, state, pkg, ...) char *s = SvPV(ST(i), len); if (len == 4 && !memcmp(s, "name", 4)) { - option_name = SvPV(ST(i+1)); + option_name = SvPV_nolen(ST(i+1)); } else if (len == 14 && !memcmp(s, "nopromoteepoch", 14)) { option_nopromoteepoch = SvIV(ST(i+1)); } |