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 /rpm2cpio.c | |
parent | 533991efdbbeff0c0f3b6f5b008c748ee61bc85e (diff) | |
download | librpm-tizen-2b84d36c2edb0acd8f47bd3316e1535cfdf60fc0.tar.gz librpm-tizen-2b84d36c2edb0acd8f47bd3316e1535cfdf60fc0.tar.bz2 librpm-tizen-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 'rpm2cpio.c')
-rw-r--r-- | rpm2cpio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rpm2cpio.c b/rpm2cpio.c index be6116584..e6ba337ca 100644 --- a/rpm2cpio.c +++ b/rpm2cpio.c @@ -20,7 +20,7 @@ int main(int argc, char **argv) fdi = ufdOpen(argv[1], O_RDONLY, 0644); } - if (fdFileno(fdi) < 0) { + if (Fileno(fdi) < 0) { perror("cannot open package"); exit(EXIT_FAILURE); } |