diff options
author | Olivier Blin <oblin@mandriva.org> | 2006-02-28 16:48:34 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.org> | 2006-02-28 16:48:34 +0000 |
commit | af88b9d1e98795d32963a6b1d01fe5649b289097 (patch) | |
tree | 21d692c868e9a2f85f8d53436b626bc9c973d88b | |
parent | da025981b905abf899141584658f89f5dcc59c5c (diff) | |
download | drakx-af88b9d1e98795d32963a6b1d01fe5649b289097.tar drakx-af88b9d1e98795d32963a6b1d01fe5649b289097.tar.gz drakx-af88b9d1e98795d32963a6b1d01fe5649b289097.tar.bz2 drakx-af88b9d1e98795d32963a6b1d01fe5649b289097.tar.xz drakx-af88b9d1e98795d32963a6b1d01fe5649b289097.zip |
remove spurious comma
-rw-r--r-- | perl-install/any.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/any.pm b/perl-install/any.pm index 469b6234e..11dc9fcf9 100644 --- a/perl-install/any.pm +++ b/perl-install/any.pm @@ -77,7 +77,7 @@ sub create_user { if_($u->{home}, '-d', $u->{home}, if_($u->{rename_from}, '-m')), if_($u->{shell}, '-s', $u->{shell}), ($u->{rename_from} - ? ('-l', $u->{name}, , $u->{rename_from}) + ? ('-l', $u->{name}, $u->{rename_from}) : $u->{name})); } |