fails and h_errno is TRY_AGAIN.
+1999-10-14 Gerd Moellmann <gerd@gnu.org>
+
+ * process.c (Fopen_network_stream): Don't loop if gethostbyname
+ fails and h_errno is TRY_AGAIN.
+
1999-10-13 Dave Love <fx@gnu.org>
* filelock.c (lock_file): Move gcpro of `fn'.
while (1)
{
+#if 0
#ifdef TRY_AGAIN
h_errno = 0;
+#endif
#endif
immediate_quit = 1;
QUIT;
host_info_ptr = gethostbyname (XSTRING (host)->data);
immediate_quit = 0;
+#if 0
#ifdef TRY_AGAIN
if (! (host_info_ptr == 0 && h_errno == TRY_AGAIN))
+#endif
#endif
break;
Fsleep_for (make_number (1), Qnil);