]> Pileus Git - ~andy/fetchmail/commitdiff
Whiespace fix.
authorEric S. Raymond <esr@thyrsus.com>
Thu, 31 Oct 2002 12:42:07 +0000 (12:42 -0000)
committerEric S. Raymond <esr@thyrsus.com>
Thu, 31 Oct 2002 12:42:07 +0000 (12:42 -0000)
svn path=/trunk/; revision=3758

pop3.c

diff --git a/pop3.c b/pop3.c
index 8fd07d11008fc0ee17079f0b56fcfbd836bd5bd6..573a8cd049d78c12107eb61684ab8afe704f6322 100644 (file)
--- a/pop3.c
+++ b/pop3.c
@@ -253,10 +253,11 @@ static int pop3_getauth(int sock, struct query *ctl, char *greeting)
        {
            char *realhost;
 
-           realhost = ctl->server.via ? ctl->server.via : ctl->server.pollname;           gen_transact(sock, "STLS");
-           if (SSLOpen(sock,ctl->sslcert,ctl->sslkey,ctl->sslproto,ctl->sslcertck, ctl->sslcertpath,ctl->sslfingerprint,realhost,ctl->server.pollname) == -1)
-           {
-               report(stderr,
+          realhost = ctl->server.via ? ctl->server.via : ctl->server.pollname;
+           gen_transact(sock, "STLS");
+          if (SSLOpen(sock,ctl->sslcert,ctl->sslkey,ctl->sslproto,ctl->sslcertck, ctl->sslcertpath,ctl->sslfingerprint,realhost,ctl->server.pollname) == -1)
+          {
+              report(stderr,
                       GT_("SSL connection failed.\n"));
                return(PS_AUTHFAIL);
            }