diff options
author | jbj <devnull@localhost> | 1999-10-30 16:43:29 +0000 |
---|---|---|
committer | jbj <devnull@localhost> | 1999-10-30 16:43:29 +0000 |
commit | 2b84d36c2edb0acd8f47bd3316e1535cfdf60fc0 (patch) | |
tree | 5d1b1ea400702929b202811bf728a6e6ecf098ab /tools/dump.c | |
parent | 533991efdbbeff0c0f3b6f5b008c748ee61bc85e (diff) | |
download | rpm-2b84d36c2edb0acd8f47bd3316e1535cfdf60fc0.tar.gz rpm-2b84d36c2edb0acd8f47bd3316e1535cfdf60fc0.tar.bz2 rpm-2b84d36c2edb0acd8f47bd3316e1535cfdf60fc0.zip |
Make fdFileno() static, use Fileno()/Ferror() analogues throughout.
Make ufdClose() static, use Fclose() with ufdio cookie throughout.
rpm.c: Clean urlinfoCache and rpmBuildArgs leaks.
url.c: urlIsURL() should be here, not in rpmio.c.
url.c: Preserve FD_t abstraction by creating ufdGetUrlinfo().
url.c: Create freeUrlinfoCache().
rpmio.c: Create ufdio cookie.
CVS patchset: 3407
CVS date: 1999/10/30 16:43:29
Diffstat (limited to 'tools/dump.c')
-rw-r--r-- | tools/dump.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/dump.c b/tools/dump.c index 4cc290b7e..92506ca06 100644 --- a/tools/dump.c +++ b/tools/dump.c @@ -14,7 +14,7 @@ int main(int argc, char ** argv) fdi = fdOpen(argv[1], O_RDONLY, 0644); } - if (fdFileno(fdi) < 0) { + if (Fileno(fdi) < 0) { fprintf(stderr, _("cannot open %s: %s\n"), argv[1], strerror(errno)); exit(1); } |