From 6ddf1239916f8803075f33e1183254bce0494f4e Mon Sep 17 00:00:00 2001 From: gbeauche <> Date: Tue, 24 Jan 2006 23:50:19 +0000 Subject: [PATCH] Adapt for new non-blocking I/O error message --- SheepShaver/src/Unix/user_strings_unix.cpp | 1 + SheepShaver/src/Unix/user_strings_unix.h | 1 + 2 files changed, 2 insertions(+) diff --git a/SheepShaver/src/Unix/user_strings_unix.cpp b/SheepShaver/src/Unix/user_strings_unix.cpp index 1b9ad6d1..c2b25e94 100644 --- a/SheepShaver/src/Unix/user_strings_unix.cpp +++ b/SheepShaver/src/Unix/user_strings_unix.cpp @@ -49,6 +49,7 @@ user_string_def platform_strings[] = { {STR_NO_XVISUAL_ERR, "Cannot obtain appropriate X visual."}, {STR_UNSUPP_DEPTH_ERR, "Unsupported color depth of screen."}, {STR_PROC_CPUINFO_WARN, "Cannot open /proc/cpuinfo (%s). Assuming 100MHz PowerPC 604."}, + {STR_BLOCKING_NET_SOCKET_WARN, "Cannot set non-blocking I/O to net socket (%s). Ethernet will not be available."}, {STR_NO_SHEEP_NET_DRIVER_WARN, "Cannot open %s (%s). Ethernet will not be available."}, {STR_SHEEP_NET_ATTACH_WARN, "Cannot attach to Ethernet card (%s). Ethernet will not be available."}, {STR_TUN_TAP_CONFIG_WARN, "Cannot configure TUN/TAP device (%s). Ethernet will not be available."}, diff --git a/SheepShaver/src/Unix/user_strings_unix.h b/SheepShaver/src/Unix/user_strings_unix.h index 09dc2d36..70ffc600 100644 --- a/SheepShaver/src/Unix/user_strings_unix.h +++ b/SheepShaver/src/Unix/user_strings_unix.h @@ -42,6 +42,7 @@ enum { STR_VOSF_INIT_ERR, STR_PROC_CPUINFO_WARN, + STR_BLOCKING_NET_SOCKET_WARN, STR_NO_SHEEP_NET_DRIVER_WARN, STR_SHEEP_NET_ATTACH_WARN, STR_TUN_TAP_CONFIG_WARN,