Minor fix.
* pop3d/pop3d.c (pop3d_mainloop): start in AUTHORIZATION if tls is established.
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -275,7 +275,7 @@ pop3d_mainloop (int ifd, int ofd, int tls) | ... | @@ -275,7 +275,7 @@ pop3d_mainloop (int ifd, int ofd, int tls) |
275 | 275 | ||
276 | pop3d_setio (ifd, ofd, tls); | 276 | pop3d_setio (ifd, ofd, tls); |
277 | 277 | ||
278 | state = initial_state; | 278 | state = tls ? AUTHORIZATION : initial_state; |
279 | 279 | ||
280 | /* Prepare the shared secret for APOP. */ | 280 | /* Prepare the shared secret for APOP. */ |
281 | { | 281 | { | ... | ... |
-
Please register or sign in to post a comment