summaryrefslogtreecommitdiff
path: root/build.c
diff options
context:
space:
mode:
authorjbj <devnull@localhost>1999-10-30 16:43:29 +0000
committerjbj <devnull@localhost>1999-10-30 16:43:29 +0000
commit2b84d36c2edb0acd8f47bd3316e1535cfdf60fc0 (patch)
tree5d1b1ea400702929b202811bf728a6e6ecf098ab /build.c
parent533991efdbbeff0c0f3b6f5b008c748ee61bc85e (diff)
downloadlibrpm-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.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/build.c b/build.c
index a42a67777..98362eab8 100644
--- a/build.c
+++ b/build.c
@@ -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;