* include/cygwin/in.h (sockaddr_in): Fix typo.

This commit is contained in:
Christopher Faylor
2003-02-13 15:15:32 +00:00
parent 46b3d18661
commit 2858de3a00
3 changed files with 95 additions and 3 deletions

View File

@@ -719,9 +719,7 @@ environ_init (char **envp, int envc)
envp[i] = newp;
if (*newp == '=')
*newp = '!';
char *eq;
if ((eq = strchr (newp, '=')) == NULL)
eq = strchr (newp, '\0');
char *eq = strechr (newp, '=');
if (!child_proc_info)
ucenv (newp, eq);
if (*newp == 'T' && strncmp (newp, "TERM=", 5) == 0)