Index: check_http.c =================================================================== RCS file: /cvsroot/nagiosplug/nagiosplug/plugins/check_http.c,v retrieving revision 1.54 diff -u -r1.54 check_http.c --- check_http.c 15 Sep 2003 05:03:47 -0000 1.54 +++ check_http.c 4 Dec 2003 16:00:24 -0000 @@ -837,11 +837,13 @@ /* URI_PATH */ else if (sscanf (pos, HD5, url) == 1) { /* relative url */ + if ((url[0] != '/')) { - if ((x = strrchr(url, '/'))) + if ((x = strrchr(server_url, '/'))) *x = '\0'; - asprintf (&server_url, "%s/%s", server_url, url); + asprintf (&url, "%s/%s", server_url, url); } + i = server_port; strcpy (type, server_type); strcpy (addr, host_name);