pop3: Moved pop3_quit() to be with the other perform functions
authorSteve Holme <steve_holme@hotmail.com>
Sun, 14 Apr 2013 08:37:19 +0000 (09:37 +0100)
committerSteve Holme <steve_holme@hotmail.com>
Sun, 14 Apr 2013 09:06:07 +0000 (10:06 +0100)
lib/pop3.c

index 31ce5ab72eaf2b1984240e077b7e5ae1f1f9d939..bd67647aaeb643013c2036a9f71830d09fc23ee9 100644 (file)
@@ -613,6 +613,25 @@ static CURLcode pop3_command(struct connectdata *conn)
   return result;
 }
 
+/***********************************************************************
+ *
+ * pop3_quit()
+ *
+ * Performs the quit action prior to sclose() be called.
+ */
+static CURLcode pop3_quit(struct connectdata *conn)
+{
+  CURLcode result = CURLE_OK;
+
+  /* Send the QUIT command */
+  result = Curl_pp_sendf(&conn->proto.pop3c.pp, "QUIT");
+
+  if(!result)
+    state(conn, POP3_QUIT);
+
+  return result;
+}
+
 /* For the initial server greeting */
 static CURLcode pop3_state_servergreet_resp(struct connectdata *conn,
                                             int pop3code,
@@ -1478,25 +1497,6 @@ static CURLcode pop3_do(struct connectdata *conn, bool *done)
   return result;
 }
 
-/***********************************************************************
- *
- * pop3_quit()
- *
- * Performs the quit action prior to sclose() be called.
- */
-static CURLcode pop3_quit(struct connectdata *conn)
-{
-  CURLcode result = CURLE_OK;
-
-  /* Send the QUIT command */
-  result = Curl_pp_sendf(&conn->proto.pop3c.pp, "QUIT");
-
-  if(!result)
-    state(conn, POP3_QUIT);
-
-  return result;
-}
-
 /***********************************************************************
  *
  * pop3_disconnect()