* gethostby_helper: Fix typos in DEBUGGING case.
This commit is contained in:
parent
d75c0f75bc
commit
2e0b52c9d8
@ -1,3 +1,7 @@
|
|||||||
|
2009-03-12 Brian Ford <Brian.Ford@FlightSafety.com>
|
||||||
|
|
||||||
|
* gethostby_helper: Fix typos in DEBUGGING case.
|
||||||
|
|
||||||
2009-03-11 Corinna Vinschen <corinna@vinschen.de>
|
2009-03-11 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
* cygwin.din: Export wcscasecmp, wcsncasecmp.
|
* cygwin.din: Export wcscasecmp, wcsncasecmp.
|
||||||
|
@ -1057,7 +1057,7 @@ gethostby_helper (const char *name, const int af, const int type,
|
|||||||
complen = dn_expand (msg, eomsg, curptr->name (), string_ptr, string_size);
|
complen = dn_expand (msg, eomsg, curptr->name (), string_ptr, string_size);
|
||||||
#ifdef DEBUGGING
|
#ifdef DEBUGGING
|
||||||
if (complen != curptr->complen)
|
if (complen != curptr->complen)
|
||||||
go to debugging;
|
goto debugging;
|
||||||
#endif
|
#endif
|
||||||
ret->h_aliases[alias_count++] = string_ptr;
|
ret->h_aliases[alias_count++] = string_ptr;
|
||||||
namelen1 = curptr->namelen1;
|
namelen1 = curptr->namelen1;
|
||||||
@ -1072,7 +1072,7 @@ gethostby_helper (const char *name, const int af, const int type,
|
|||||||
complen = dn_expand (msg, eomsg, curptr->name(), string_ptr, string_size);
|
complen = dn_expand (msg, eomsg, curptr->name(), string_ptr, string_size);
|
||||||
#ifdef DEBUGGING
|
#ifdef DEBUGGING
|
||||||
if (complen != curptr->complen)
|
if (complen != curptr->complen)
|
||||||
go to debugging;
|
goto debugging;
|
||||||
#endif
|
#endif
|
||||||
ret->h_name = string_ptr;
|
ret->h_name = string_ptr;
|
||||||
namelen1 = curptr->namelen1;
|
namelen1 = curptr->namelen1;
|
||||||
@ -1090,12 +1090,12 @@ gethostby_helper (const char *name, const int af, const int type,
|
|||||||
}
|
}
|
||||||
#ifdef DEBUGGING
|
#ifdef DEBUGGING
|
||||||
/* Should not get here */
|
/* Should not get here */
|
||||||
go to debugging;
|
goto debugging;
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
#ifdef DEBUGGING
|
#ifdef DEBUGGING
|
||||||
if (string_size < 0)
|
if (string_size < 0)
|
||||||
go to debugging;
|
goto debugging;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
free (msg);
|
free (msg);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user