From 924dc064a5d8c1222ef9ea20ad8e8401f24d7569 Mon Sep 17 00:00:00 2001 From: Julian Blake Kongslie Date: Wed, 9 Jan 2013 15:50:53 -0800 Subject: ugh fine i guess my bugfix should actually fix a bug --- pinyadmin/sbin/pinyconfig | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'pinyadmin/sbin/pinyconfig') diff --git a/pinyadmin/sbin/pinyconfig b/pinyadmin/sbin/pinyconfig index 6466ed7..d6cb795 100755 --- a/pinyadmin/sbin/pinyconfig +++ b/pinyadmin/sbin/pinyconfig @@ -88,9 +88,11 @@ if ( not defined $attr ) { print STDERR "$attr is not a legal tweakable, or $value is not a legal value for that tweakable.\n$@\n"; exit( 4 ); }; - if ( defined $repo and $attr eq "description" and $value ne $repo->description ) { - print STDERR "Failed to set $attr (perhaps an override is in place)\n"; - exit( 5 ); + if ( defined $repo and $attr eq "description" ) { + if ( $value ne $repo->description ) { + print STDERR "Failed to set $attr (perhaps an override is in place)\n"; + exit( 5 ); + }; } elsif ( $value ne $config->$attr ) { print STDERR "Failed to set $attr (perhaps an override is in place)\n"; exit( 5 ); -- cgit v1.2.3