From b65f54c9aa1e3405b731769e56460592ba69ed60 Mon Sep 17 00:00:00 2001 From: Pavan T C Date: Mon, 28 Mar 2011 03:50:29 +0000 Subject: Loosen restrictions on hostnames Signed-off-by: Pavan T C Signed-off-by: Vijay Bellur BUG: 2249 (Problems with hostname validation) URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=2249 --- cli/src/cli-cmd-parser.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'cli') diff --git a/cli/src/cli-cmd-parser.c b/cli/src/cli-cmd-parser.c index 11b9cbcb98b..66e5643fcb9 100644 --- a/cli/src/cli-cmd-parser.c +++ b/cli/src/cli-cmd-parser.c @@ -97,6 +97,10 @@ cli_cmd_bricks_parse (const char **words, int wordcount, int brick_index, GF_FREE (host_name); goto out; } + if (!valid_host_name(host_name, strlen(host_name))) { + cli_out ("internet address '%s' does not comform to " + "standards", host_name); + } GF_FREE (host_name); tmp_list = gf_strdup (brick_list + 1); if (free_list_ptr) { -- cgit