diff options
Diffstat (limited to 'plugins/check_http.c')
-rw-r--r-- | plugins/check_http.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/check_http.c b/plugins/check_http.c index b371cd6..2481935 100644 --- a/plugins/check_http.c +++ b/plugins/check_http.c | |||
@@ -151,7 +151,7 @@ main (int argc, char **argv) | |||
151 | 151 | ||
152 | if (display_html == TRUE) | 152 | if (display_html == TRUE) |
153 | printf ("<A HREF=\"%s://%s:%d%s\" target=\"_blank\">", | 153 | printf ("<A HREF=\"%s://%s:%d%s\" target=\"_blank\">", |
154 | use_ssl ? "https" : "http", server_address, | 154 | use_ssl ? "https" : "http", host_name ? host_name : server_address, |
155 | server_port, server_url); | 155 | server_port, server_url); |
156 | 156 | ||
157 | /* initialize alarm signal handling, set socket timeout, start timer */ | 157 | /* initialize alarm signal handling, set socket timeout, start timer */ |
@@ -1155,7 +1155,7 @@ redir (char *pos, char *status_line) | |||
1155 | } | 1155 | } |
1156 | i = server_port; | 1156 | i = server_port; |
1157 | strcpy (type, server_type); | 1157 | strcpy (type, server_type); |
1158 | strcpy (addr, server_address); | 1158 | strcpy (addr, host_name ? host_name : server_address); |
1159 | } | 1159 | } |
1160 | 1160 | ||
1161 | else { | 1161 | else { |
@@ -1204,8 +1204,8 @@ redir (char *pos, char *status_line) | |||
1204 | display_html ? "</A>" : ""); | 1204 | display_html ? "</A>" : ""); |
1205 | 1205 | ||
1206 | if (verbose) | 1206 | if (verbose) |
1207 | printf (_("Redirection to %s://%s:%d%s\n"), server_type, server_address, | 1207 | printf (_("Redirection to %s://%s:%d%s\n"), server_type, |
1208 | server_port, server_url); | 1208 | host_name ? host_name : server_address, server_port, server_url); |
1209 | 1209 | ||
1210 | check_http (); | 1210 | check_http (); |
1211 | } | 1211 | } |