Commit 36cd5251 36cd525184c9aabdf61117aa0d0acdccc8bc18cf by Sergey Poznyakoff

Minor fix.

* pop3d/pop3d.c (pop3d_mainloop): start in AUTHORIZATION if tls
is established.
1 parent 3ec5d07e
...@@ -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 {
......