* udip2soc.c (UDIConnect): replace union wait with int.
authorK. Richard Pixley <rich@cygnus>
Sat, 1 May 1993 00:31:02 +0000 (00:31 +0000)
committerK. Richard Pixley <rich@cygnus>
Sat, 1 May 1993 00:31:02 +0000 (00:31 +0000)
gdb/29k-share/udi/udip2soc.c
gdb/ChangeLog

index 93112efd95c52b1a0067aad152c2847be40f55fd..7ec283471215a8f634ff5665cdedf305f80f69f8 100644 (file)
@@ -305,7 +305,7 @@ UDIConnect(Config, Session)
          { /* if connect() fails assume TIP not yet started */
 /*------------------------------------------------------------ AF_UNIX EXEC */
            int pid;
-           union wait statusp;
+           int statusp;
            char *arg0;
 
            arg0 = strrchr(soc_con[cnt].tip_exe,'/');
@@ -380,7 +380,7 @@ UDIConnect(Config, Session)
          = htons(atoi(soc_con[cnt].tip_exe));
 
        if (connect(soc_con[cnt].dfe_sd,
-                   &soc_con[cnt].tip_sockaddr_in,
+                   (struct sockaddr *) &soc_con[cnt].tip_sockaddr_in,
                    sizeof(soc_con[cnt].tip_sockaddr_in)))
          {
            sprintf(dfe_errmsg, "DFE-ipc ERROR, connect() call failed %s ",
index 9957182b516afdec8fb6187ecde3ca54cadee097..64addff03b305444677d165540bd8a05b7ef4f6c 100644 (file)
@@ -1,5 +1,7 @@
 Fri Apr 30 16:50:38 1993  K. Richard Pixley  (rich@rtl.cygnus.com)
 
+       * udip2soc.c (UDIConnect): replace union wait with int.
+
        * config/sparc/sun4sol2.mh (XM_CLIBS): add -lsocket which is
          required target ports which use sockets (like a29k-udi).