isync

mailbox synchronization program
git clone https://git.code.sf.net/p/isync/isync
Log | Files | Refs | README | LICENSE

commit 5ad83b4e6a59e023a43deffb28b6da3f35262c0e
parent e4243debb64dabd27db1def2468d95a12c8c1e2c
Author: Oswald Buddenhagen <ossi@users.sf.net>
Date:   Thu,  9 May 2013 18:51:24 +0200

don't unnecessarily use continue

Diffstat:
Msrc/sync.c | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/sync.c b/src/sync.c @@ -1211,10 +1211,10 @@ box_loaded( int sts, void *aux ) } else { if (tmsg->srec) { debug( " -> not %sing - still too big\n", str_hl[t] ); - continue; + } else { + debug( " -> not %sing - too big\n", str_hl[t] ); + msg_copied_p2( svars, srec, t, tmsg, -1 ); } - debug( " -> not %sing - too big\n", str_hl[t] ); - msg_copied_p2( svars, srec, t, tmsg, -1 ); } } }