handle local host lookup failures
This commit is contained in:
parent
8bb36f506f
commit
d6a68a4823
1 changed files with 22 additions and 0 deletions
22
libs/sgi-webuci/boa-patches/110-host_lookup.patch
Normal file
22
libs/sgi-webuci/boa-patches/110-host_lookup.patch
Normal file
|
@ -0,0 +1,22 @@
|
|||
Index: boa-0.94.13/src/config.c
|
||||
===================================================================
|
||||
--- boa-0.94.13.orig/src/config.c 2008-06-29 00:55:19.000000000 +0200
|
||||
+++ boa-0.94.13/src/config.c 2008-06-29 00:59:08.000000000 +0200
|
||||
@@ -273,12 +273,12 @@
|
||||
}
|
||||
|
||||
he = gethostbyname(temp_name);
|
||||
- if (he == NULL) {
|
||||
- perror("gethostbyname:");
|
||||
- exit(1);
|
||||
- }
|
||||
+ if (he && he->h_name)
|
||||
+ server_name = he->h_name;
|
||||
+ else
|
||||
+ server_name = "OpenWrt";
|
||||
|
||||
- server_name = strdup(he->h_name);
|
||||
+ server_name = strdup(server_name);
|
||||
if (server_name == NULL) {
|
||||
perror("strdup:");
|
||||
exit(1);
|
Loading…
Reference in a new issue