aboutsummaryrefslogtreecommitdiff
path: root/gdb/ser-tcp.c
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2001-08-02 09:08:03 +0000
committerCorinna Vinschen <corinna@vinschen.de>2001-08-02 09:08:03 +0000
commitad4571f3f363b358d11ec13357f8bffdbdd4312b (patch)
tree40cbddb7023d2f38eba7798b78f6f4f3f7a27f26 /gdb/ser-tcp.c
parent962b3eada2c73671d2b701c75ba2e2b2c616dfff (diff)
downloadfsf-binutils-gdb-ad4571f3f363b358d11ec13357f8bffdbdd4312b.zip
fsf-binutils-gdb-ad4571f3f363b358d11ec13357f8bffdbdd4312b.tar.gz
fsf-binutils-gdb-ad4571f3f363b358d11ec13357f8bffdbdd4312b.tar.bz2
* MAINTAINERS: Add myself to the write-after-approval list.
* ser-tcp.c (tcp_open): Use `localhost' as default host if no hostname is given.
Diffstat (limited to 'gdb/ser-tcp.c')
-rw-r--r--gdb/ser-tcp.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/gdb/ser-tcp.c b/gdb/ser-tcp.c
index fe5cb44..9a868e8 100644
--- a/gdb/ser-tcp.c
+++ b/gdb/ser-tcp.c
@@ -63,6 +63,9 @@ tcp_open (struct serial *scb, const char *name)
hostname[tmp] = '\000'; /* Tie off host name */
port = atoi (port_str + 1);
+ if (!hostname[0])
+ strcpy (hostname, "localhost");
+
hostent = gethostbyname (hostname);
if (!hostent)