diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2004-12-22 09:42:25 +0000 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2004-12-22 09:42:25 +0000 |
commit | 58b3d0fd8c89e70b3f44dc86978a5ea99ece597f (patch) | |
tree | 92dd843b1f97c2cf5f92147b373e135433a2927b /driver.c | |
parent | e33460aa404d0e95c8673efa3f84ed6286428874 (diff) | |
download | fetchmail-58b3d0fd8c89e70b3f44dc86978a5ea99ece597f.tar.gz fetchmail-58b3d0fd8c89e70b3f44dc86978a5ea99ece597f.tar.bz2 fetchmail-58b3d0fd8c89e70b3f44dc86978a5ea99ece597f.zip |
Add two comments to lengthy setjmp() code.
svn path=/trunk/; revision=4015
Diffstat (limited to 'driver.c')
-rw-r--r-- | driver.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -851,6 +851,7 @@ static int do_session( if ((js = setjmp(restart))) { + /* exception caught */ #ifdef HAVE_SIGPROCMASK /* * Don't rely on setjmp() to restore the blocked-signal mask. @@ -928,6 +929,7 @@ static int do_session( } else { + /* setjmp returned zero -> normal operation */ char buf[MSGBUFSIZE+1], *realhost; int count, new, bytes; #ifdef INET6_ENABLE |