projects
/
tinc
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4ee53e7
)
- Extra check op EINTR bij inlezen requests
author
Guus Sliepen
<guus@tinc-vpn.org>
Wed, 28 Jun 2000 10:11:10 +0000
(10:11 +0000)
committer
Guus Sliepen
<guus@tinc-vpn.org>
Wed, 28 Jun 2000 10:11:10 +0000
(10:11 +0000)
src/net.c
patch
|
blob
|
history
diff --git
a/src/net.c
b/src/net.c
index
df67a1c
..
fd38c02
100644
(file)
--- a/
src/net.c
+++ b/
src/net.c
@@
-17,7
+17,7
@@
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- $Id: net.c,v 1.35.4.1
1 2000/06/27 21:05:07
guus Exp $
+ $Id: net.c,v 1.35.4.1
2 2000/06/28 10:11:10
guus Exp $
*/
#include "config.h"
@@
-1053,6
+1053,8
@@
cp
if(lenin<=0)
{
+ if(errno==EINTR)
+ return 0;
syslog(LOG_ERR, _("Metadata socket read error: %m"));
return -1;
}