*** empty log message ***

This commit is contained in:
François Pinard
1994-11-16 02:45:25 +00:00
parent 5a64fdfa1f
commit 8699641bb3
2 changed files with 2 additions and 2 deletions

View File

@@ -252,7 +252,7 @@ checkbuf(record, size)
maxrecsize = size;
#ifdef SO_RCVBUF
while (size > 1024 &&
setsockopt(0, SOL_SOCKET, SO_RCVBUF, &size, sizeof (size)) < 0)
setsockopt(0, SOL_SOCKET, SO_RCVBUF, (char *)&size, sizeof (size)) < 0)
size -= 1024;
#else
size= 1+((size-1)%1024);

View File

@@ -62,7 +62,7 @@ extern char *__rmt_path;
extern char *index();
#endif
#define _remdev(path) (!f_force_local && __rmt_path=index(path, ':'))
#define _remdev(path) (!f_force_local && (__rmt_path=index(path, ':')))
#define _isrmt(fd) ((fd) >= __REM_BIAS)
#define rmtopen(path,oflag,mode) (_remdev(path) ? __rmt_open(path, oflag, mode, __REM_BIAS) : open(path, oflag, mode))