aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2007-12-10 10:23:12 +0000
committerPascal Rigaux <pixel@mandriva.com>2007-12-10 10:23:12 +0000
commite44272cb55f996cb35b3c49c4148057a4e58477c (patch)
treec561fd1b5b80d3f03e112b6d559164b803474835
parentb0e94838b12e4b3ce3f61ca161aad3fb404ae049 (diff)
downloadperl-URPM-e44272cb55f996cb35b3c49c4148057a4e58477c.tar
perl-URPM-e44272cb55f996cb35b3c49c4148057a4e58477c.tar.gz
perl-URPM-e44272cb55f996cb35b3c49c4148057a4e58477c.tar.bz2
perl-URPM-e44272cb55f996cb35b3c49c4148057a4e58477c.tar.xz
perl-URPM-e44272cb55f996cb35b3c49c4148057a4e58477c.zip
use rpmlogSetCallback() instead of deprecated rpmErrorSetCallback()
-rw-r--r--URPM.xs2
1 files changed, 1 insertions, 1 deletions
diff --git a/URPM.xs b/URPM.xs
index 692c255..e74e54a 100644
--- a/URPM.xs
+++ b/URPM.xs
@@ -4023,6 +4023,6 @@ rpmErrorWriteTo(fd)
int fd
CODE:
rpmError_callback_data = fd;
- rpmErrorSetCallback(rpmError_callback);
+ rpmlogSetCallback(rpmError_callback);
/* vim:set ts=8 sts=2 sw=2: */