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)
pop3d_setio (ifd, ofd, tls);
state = initial_state;
state = tls ? AUTHORIZATION : initial_state;
/* Prepare the shared secret for APOP. */
{
......