Fixed typo.

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@617 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Assar Westerlund
1996-08-04 19:59:47 +00:00
parent 10a1126f52
commit 98f762af80

View File

@@ -936,7 +936,7 @@ recvrequest(char *cmd, char *local, char *remote, char *lmode, int printnames)
{
size_t blocksize = BUFSIZ;
#ifdef HAVE_ST_BLKSIZE
if (fstat(fileno(fout), &st) => 0 && st.st_blksize > 0)
if (fstat(fileno(fout), &st) >= 0 && st.st_blksize > 0)
blocksize = st.st_blksize;
#endif
if (blocksize > bufsize) {