From d213c95024bb0717f8a3e8c8df236b73c7fe963f Mon Sep 17 00:00:00 2001 From: Michael Graff Date: Thu, 2 Sep 1999 20:52:13 +0000 Subject: [PATCH] Fetch an URL that exists --- bin/tests/sock_test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/tests/sock_test.c b/bin/tests/sock_test.c index 06b9a57898..cbc09fe790 100644 --- a/bin/tests/sock_test.c +++ b/bin/tests/sock_test.c @@ -184,7 +184,7 @@ my_connect(isc_task_t *task, isc_event_t *event) * Send a GET string, and set up to receive (and just display) * the result. */ - strcpy(buf, "GET /foo HTTP/1.1\r\nHost: www.flame.org\r\nConnection: Close\r\n\r\n"); + strcpy(buf, "GET / HTTP/1.1\r\nHost: www.flame.org\r\nConnection: Close\r\n\r\n"); region.base = isc_mem_get(mctx, strlen(buf) + 1); region.length = strlen(buf) + 1; strcpy((char *)region.base, buf); /* strcpy is safe */