aboutsummaryrefslogtreecommitdiff
path: root/perl
diff options
context:
space:
mode:
Diffstat (limited to 'perl')
-rw-r--r--perl/Wallet/ACL.pm8
1 files changed, 8 insertions, 0 deletions
diff --git a/perl/Wallet/ACL.pm b/perl/Wallet/ACL.pm
index 5a56c5c..1815199 100644
--- a/perl/Wallet/ACL.pm
+++ b/perl/Wallet/ACL.pm
@@ -69,6 +69,9 @@ sub new {
# the newly created ACL in the object. On failure, throws an exception.
sub create {
my ($class, $name, $dbh, $user, $host, $time) = @_;
+ if ($name =~ /^\d+\z/) {
+ die "ACL name may not be all numbers\n";
+ }
$dbh->{AutoCommit} = 0;
$dbh->{RaiseError} = 1;
$dbh->{PrintError} = 0;
@@ -144,6 +147,10 @@ sub log_acl {
# Returns true on success, false on failure.
sub rename {
my ($self, $name) = @_;
+ if ($name =~ /^\d+\z/) {
+ $self->{error} = "ACL name may not be all numbers";
+ return undef;
+ }
eval {
my $sql = 'update acls set ac_name = ? where ac_id = ?';
$self->{dbh}->do ($sql, undef, $name, $self->{id});
@@ -156,6 +163,7 @@ sub rename {
$self->{dbh}->rollback;
return undef;
}
+ $self->{name} = $name;
return 1;
}