Conditionalise st_blksize

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@675 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Johan Danielsson
1996-08-24 20:33:06 +00:00
parent 26eba30f7e
commit 0848c26e17

View File

@@ -823,7 +823,9 @@ retrieve(char *cmd, char *name)
(void) sprintf(line, cmd, name), name = line;
fin = ftpd_popen(line, "r"), closefunc = ftpd_pclose;
st.st_size = -1;
#ifdef HAVE_ST_BLKSIZE
st.st_blksize = BUFSIZ;
#endif
}
if (fin == NULL) {
if (errno != 0) {
@@ -863,7 +865,11 @@ retrieve(char *cmd, char *name)
if (dout == NULL)
goto done;
set_buffer_size(fileno(dout), 0);
#ifdef HAVE_ST_BLKSIZE
send_data(fin, dout, st.st_blksize);
#else
send_data(fin, dout, BUFSIZ);
#endif
(void) fclose(dout);
data = -1;
pdata = -1;