diff options
author | ivan <ivan> | 2002-09-09 12:34:53 +0000 |
---|---|---|
committer | ivan <ivan> | 2002-09-09 12:34:53 +0000 |
commit | 0c1a780faaf763e9d440e4404a122f304a051113 (patch) | |
tree | dd51cbc50b53a48fd57cb632fb06d8f908db7b3d | |
parent | f1fa0fcce03bcc393fa08c9cf562fa977e79b22e (diff) |
: is not legal in GECOS
-rw-r--r-- | FS/FS/svc_acct.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/svc_acct.pm b/FS/FS/svc_acct.pm index e62cdd7bb..9032e20c1 100644 --- a/FS/FS/svc_acct.pm +++ b/FS/FS/svc_acct.pm @@ -752,7 +752,7 @@ sub check { # $error = $self->ut_textn('finger'); # return $error if $error; $self->getfield('finger') =~ - /^([\w \t\!\@\#\$\%\&\(\)\-\+\;\:\'\"\,\.\?\/\*\<\>]*)$/ + /^([\w \t\!\@\#\$\%\&\(\)\-\+\;\'\"\,\.\?\/\*\<\>]*)$/ or return "Illegal finger: ". $self->getfield('finger'); $self->setfield('finger', $1); |