diff options
author | Panu Matilainen <pmatilai@redhat.com> | 2007-10-09 14:48:04 +0300 |
---|---|---|
committer | Panu Matilainen <pmatilai@redhat.com> | 2007-10-09 14:48:04 +0300 |
commit | 9d9aa852ca724e4c7671cec249189f7dfef5ed8e (patch) | |
tree | 4b9d2126c2580c47cccfa6d27450ed9049ad4464 /rpmio/url.c | |
parent | 4ce9fc1a1725b883190de2c415842a342ed3dbe3 (diff) | |
download | librpm-tizen-9d9aa852ca724e4c7671cec249189f7dfef5ed8e.tar.gz librpm-tizen-9d9aa852ca724e4c7671cec249189f7dfef5ed8e.tar.bz2 librpm-tizen-9d9aa852ca724e4c7671cec249189f7dfef5ed8e.zip |
Replace all uses of RPMMESS_DEBUG with RPMLOG_DEBUG
Diffstat (limited to 'rpmio/url.c')
-rw-r--r-- | rpmio/url.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rpmio/url.c b/rpmio/url.c index baa10b2d0..90e15b451 100644 --- a/rpmio/url.c +++ b/rpmio/url.c @@ -254,7 +254,7 @@ int urlGetFile(const char * url, const char * dest) sfd = Fopen(url, "r.ufdio"); if (sfd == NULL || Ferror(sfd)) { - rpmlog(RPMMESS_DEBUG, _("failed to open %s: %s\n"), url, Fstrerror(sfd)); + rpmlog(RPMLOG_DEBUG, _("failed to open %s: %s\n"), url, Fstrerror(sfd)); rc = FTPERR_UNKNOWN; goto exit; } @@ -274,7 +274,7 @@ if (_url_debug) fprintf(stderr, "*** urlGetFile sfd %p %s tfd %p %s\n", sfd, url, (tfd ? tfd : NULL), dest); if (tfd == NULL || Ferror(tfd)) { /* XXX Fstrerror */ - rpmlog(RPMMESS_DEBUG, _("failed to create %s: %s\n"), dest, Fstrerror(tfd)); + rpmlog(RPMLOG_DEBUG, _("failed to create %s: %s\n"), dest, Fstrerror(tfd)); rc = FTPERR_UNKNOWN; goto exit; } |