#include <stdio.h> first; use correct cast for call to connect
authorJohn Carr <jfc@mit.edu>
Sun, 23 Feb 1992 12:31:56 +0000 (12:31 +0000)
committerJohn Carr <jfc@mit.edu>
Sun, 23 Feb 1992 12:31:56 +0000 (12:31 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@2248 dc483132-0cff-0310-8789-dd5450dbe970

src/appl/movemail/movemail.c

index 89ace3fc8c7ea5504dbec1ed95e15084450eb295..995f3b353833049585dc3b9bb2b56d60857054f8 100644 (file)
@@ -50,6 +50,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  * 
  */
 
+#include <stdio.h>
 #include <sys/types.h>
 #include <sys/stat.h>
 #include <sys/file.h>
@@ -339,7 +340,6 @@ xmalloc (size)
 #include <sys/socket.h>
 #include <netinet/in.h>
 #include <netdb.h>
-#include <stdio.h>
 #ifdef KERBEROS
 #define        POP_SERVICE     "pop"
 #ifdef KRB4
@@ -548,7 +548,7 @@ char *host;
        return(NOTOK);
     }
 
-    if (connect(s, (char *)&sin, sizeof sin) < 0) {
+    if (connect(s, (struct sockaddr *)&sin, sizeof sin) < 0) {
        sprintf(Errmsg, "error during connect: %s", get_errmsg());
        close(s);
        return(NOTOK);