diff options
author | ivan <ivan> | 2001-09-11 22:20:28 +0000 |
---|---|---|
committer | ivan <ivan> | 2001-09-11 22:20:28 +0000 |
commit | cf7ca698138c8708c68cb969cc843311e385a7a8 (patch) | |
tree | c157eacef4b8974980a404d0cb8c3c70adc07849 /bin/fs-setup | |
parent | cb69afd435095144bea83565973561045e28c6a6 (diff) |
fix radius attribute adding
Diffstat (limited to 'bin/fs-setup')
-rwxr-xr-x | bin/fs-setup | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/fs-setup b/bin/fs-setup index 9534eb23f..e7dda8ed7 100755 --- a/bin/fs-setup +++ b/bin/fs-setup @@ -1,6 +1,6 @@ #!/usr/bin/perl -Tw # -# $Id: fs-setup,v 1.57 2001-09-11 00:07:30 ivan Exp $ +# $Id: fs-setup,v 1.58 2001-09-11 22:20:28 ivan Exp $ #to delay loading dbdef until we're ready BEGIN { $FS::Record::setup_hack = 1; } @@ -20,7 +20,7 @@ use FS::raddb; die "Not running uid freeside!" unless checkeuid(); my %attrib2db = - map { $FS::raddb::attrib{lc($_)} => $_ } keys %FS::raddb::attrib; + map { lc($FS::raddb::attrib{$_}) => $_ } keys %FS::raddb::attrib; my $user = shift or die &usage; getsecrets($user); |