summaryrefslogtreecommitdiff
path: root/hscript/meta.cc
diff options
context:
space:
mode:
Diffstat (limited to 'hscript/meta.cc')
-rw-r--r--hscript/meta.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/hscript/meta.cc b/hscript/meta.cc
index 52ed3db..15734c5 100644
--- a/hscript/meta.cc
+++ b/hscript/meta.cc
@@ -43,9 +43,9 @@ bool Hostname::validate() const {
bool any_failure = false;
std::string::size_type last_dot = 0, next_dot = 0;
- if(!isalpha(this->_value[0])) {
+ if(!isalnum(this->_value[0])) {
any_failure = true;
- output_error(pos, "hostname: must start with alphabetical character");
+ output_error(pos, "hostname: must start with alphanumeric character");
}
if(this->_value.size() > 320) {