summaryrefslogtreecommitdiffstats
path: root/ax25
diff options
context:
space:
mode:
Diffstat (limited to 'ax25')
-rw-r--r--ax25/axwrapper.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/ax25/axwrapper.c b/ax25/axwrapper.c
index eaa387c..ad2995a 100644
--- a/ax25/axwrapper.c
+++ b/ax25/axwrapper.c
@@ -176,6 +176,9 @@ int main(int argc, char **argv)
len = select(256, &fdset, NULL, NULL, &tv);
if (len == -1) {
+ if (errno == EINTR)
+ continue;
+
perror("axwrapper: select");
exit(1);
}