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 /build.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 'build.c')
-rw-r--r-- | build.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -59,7 +59,8 @@ static int isSpecFile(const char *specfile) int count; int checking; - if (fdFileno((fd = ufdOpen(specfile, O_RDONLY, 0))) < 0) { + fd = ufdOpen(specfile, O_RDONLY, 0); + if (Ferror(fd)) { /* XXX Fstrerror */ fprintf(stderr, _("Unable to open spec file: %s\n"), specfile); return 0; |