diff options
author | ewt <devnull@localhost> | 1997-06-02 14:01:29 +0000 |
---|---|---|
committer | ewt <devnull@localhost> | 1997-06-02 14:01:29 +0000 |
commit | fccf9d02490fac351968d8d75247605adc4af096 (patch) | |
tree | 203f677af094733798a1ea84aa9caa6ec0105734 /rpm.c | |
parent | c428a31fe6ff1fb402e28df30ea39f9521c6d60d (diff) | |
download | rpm-fccf9d02490fac351968d8d75247605adc4af096.tar.gz rpm-fccf9d02490fac351968d8d75247605adc4af096.tar.bz2 rpm-fccf9d02490fac351968d8d75247605adc4af096.zip |
Use pclose() w/ popen(), not fclose()
CVS patchset: 1677
CVS date: 1997/06/02 14:01:29
Diffstat (limited to 'rpm.c')
-rwxr-xr-x | rpm.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -380,7 +380,7 @@ static int build(char *arg, int buildAmount, char *passPhrase, unlink(tmpSpecFile); return 1; } - fclose(f); + pclose(f); cmd = specfile = buf; while (*cmd) { |