mirror of
https://github.com/vim/vim.git
synced 2025-07-04 23:07:33 -04:00
patch 7.4.1174
Problem: Netbeans contains dead code insde #ifdef. Solution: Remove the dead code.
This commit is contained in:
parent
65591001e4
commit
3e53c700a2
@ -27,9 +27,6 @@
|
|||||||
|
|
||||||
#if defined(FEAT_NETBEANS_INTG) || defined(PROTO)
|
#if defined(FEAT_NETBEANS_INTG) || defined(PROTO)
|
||||||
|
|
||||||
/* TODO: when should this not be defined? */
|
|
||||||
#define INET_SOCKETS
|
|
||||||
|
|
||||||
/* Note: when making changes here also adjust configure.in. */
|
/* Note: when making changes here also adjust configure.in. */
|
||||||
#ifdef WIN32
|
#ifdef WIN32
|
||||||
# ifdef DEBUG
|
# ifdef DEBUG
|
||||||
@ -49,12 +46,8 @@
|
|||||||
# define sock_close(sd) closesocket(sd)
|
# define sock_close(sd) closesocket(sd)
|
||||||
# define sleep(t) Sleep(t*1000) /* WinAPI Sleep() accepts milliseconds */
|
# define sleep(t) Sleep(t*1000) /* WinAPI Sleep() accepts milliseconds */
|
||||||
#else
|
#else
|
||||||
# ifdef INET_SOCKETS
|
# include <netdb.h>
|
||||||
# include <netdb.h>
|
# include <netinet/in.h>
|
||||||
# include <netinet/in.h>
|
|
||||||
# else
|
|
||||||
# include <sys/un.h>
|
|
||||||
# endif
|
|
||||||
|
|
||||||
# include <sys/socket.h>
|
# include <sys/socket.h>
|
||||||
# ifdef HAVE_LIBGEN_H
|
# ifdef HAVE_LIBGEN_H
|
||||||
@ -216,16 +209,12 @@ netbeans_close(void)
|
|||||||
static int
|
static int
|
||||||
netbeans_connect(char *params, int doabort)
|
netbeans_connect(char *params, int doabort)
|
||||||
{
|
{
|
||||||
#ifdef INET_SOCKETS
|
|
||||||
struct sockaddr_in server;
|
struct sockaddr_in server;
|
||||||
struct hostent * host;
|
struct hostent * host;
|
||||||
# ifdef FEAT_GUI_W32
|
#ifdef FEAT_GUI_W32
|
||||||
u_short port;
|
u_short port;
|
||||||
# else
|
|
||||||
int port;
|
|
||||||
# endif
|
|
||||||
#else
|
#else
|
||||||
struct sockaddr_un server;
|
int port;
|
||||||
#endif
|
#endif
|
||||||
int sd;
|
int sd;
|
||||||
char buf[32];
|
char buf[32];
|
||||||
@ -309,7 +298,6 @@ netbeans_connect(char *params, int doabort)
|
|||||||
channel_init_winsock();
|
channel_init_winsock();
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef INET_SOCKETS
|
|
||||||
port = atoi(address);
|
port = atoi(address);
|
||||||
|
|
||||||
if ((sd = (sock_T)socket(AF_INET, SOCK_STREAM, 0)) == (sock_T)-1)
|
if ((sd = (sock_T)socket(AF_INET, SOCK_STREAM, 0)) == (sock_T)-1)
|
||||||
@ -332,17 +320,6 @@ netbeans_connect(char *params, int doabort)
|
|||||||
goto theend;
|
goto theend;
|
||||||
}
|
}
|
||||||
memcpy((char *)&server.sin_addr, host->h_addr, host->h_length);
|
memcpy((char *)&server.sin_addr, host->h_addr, host->h_length);
|
||||||
#else
|
|
||||||
if ((sd = socket(AF_UNIX, SOCK_STREAM, 0)) == -1)
|
|
||||||
{
|
|
||||||
nbdebug(("error in socket() in netbeans_connect()\n"));
|
|
||||||
PERROR("socket() in netbeans_connect()");
|
|
||||||
goto theend;
|
|
||||||
}
|
|
||||||
|
|
||||||
server.sun_family = AF_UNIX;
|
|
||||||
strcpy(server.sun_path, address);
|
|
||||||
#endif
|
|
||||||
/* Connect to server */
|
/* Connect to server */
|
||||||
if (connect(sd, (struct sockaddr *)&server, sizeof(server)))
|
if (connect(sd, (struct sockaddr *)&server, sizeof(server)))
|
||||||
{
|
{
|
||||||
@ -351,7 +328,6 @@ netbeans_connect(char *params, int doabort)
|
|||||||
if (errno == ECONNREFUSED)
|
if (errno == ECONNREFUSED)
|
||||||
{
|
{
|
||||||
sock_close(sd);
|
sock_close(sd);
|
||||||
#ifdef INET_SOCKETS
|
|
||||||
if ((sd = (sock_T)socket(AF_INET, SOCK_STREAM, 0)) == (sock_T)-1)
|
if ((sd = (sock_T)socket(AF_INET, SOCK_STREAM, 0)) == (sock_T)-1)
|
||||||
{
|
{
|
||||||
SOCK_ERRNO;
|
SOCK_ERRNO;
|
||||||
@ -359,15 +335,6 @@ netbeans_connect(char *params, int doabort)
|
|||||||
PERROR("socket()#2 in netbeans_connect()");
|
PERROR("socket()#2 in netbeans_connect()");
|
||||||
goto theend;
|
goto theend;
|
||||||
}
|
}
|
||||||
#else
|
|
||||||
if ((sd = socket(AF_UNIX, SOCK_STREAM, 0)) == -1)
|
|
||||||
{
|
|
||||||
SOCK_ERRNO;
|
|
||||||
nbdebug(("socket()#2 in netbeans_connect()\n"));
|
|
||||||
PERROR("socket()#2 in netbeans_connect()");
|
|
||||||
goto theend;
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
if (connect(sd, (struct sockaddr *)&server, sizeof(server)))
|
if (connect(sd, (struct sockaddr *)&server, sizeof(server)))
|
||||||
{
|
{
|
||||||
int retries = 36;
|
int retries = 36;
|
||||||
|
@ -741,6 +741,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
1174,
|
||||||
/**/
|
/**/
|
||||||
1173,
|
1173,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user