diff --git a/src/main.c b/src/main.c index 24a6639..85a6b06 100644 --- a/src/main.c +++ b/src/main.c @@ -1045,8 +1045,6 @@ done_sync( int sts, void *aux ) if (sts & SYNC_BAD(S)) mvars->state[S] = ST_CLOSED; mvars->skip = 1; - } else if (sts & SYNC_FAIL_ALL) { - mvars->skip = 1; } } sync_chans( mvars, E_SYNC ); diff --git a/src/sync.h b/src/sync.h index 65a23ce..be26660 100644 --- a/src/sync.h +++ b/src/sync.h @@ -71,7 +71,6 @@ extern const char *str_ms[2], *str_hl[2]; #define SYNC_OK 0 /* assumed to be 0 */ #define SYNC_FAIL 1 -#define SYNC_FAIL_ALL 2 #define SYNC_BAD(ms) (4<<(ms)) #define SYNC_NOGOOD 16 /* internal */ #define SYNC_CANCELED 32 /* internal */