diff options
author | Julian Blake Kongslie <jblake@omgwallhack.org> | 2010-03-18 13:32:15 -0700 |
---|---|---|
committer | Julian Blake Kongslie <jblake@omgwallhack.org> | 2010-03-18 13:32:15 -0700 |
commit | e448007d21a2fd89ef42085bc29beb2883eb35ff (patch) | |
tree | 9f01f2af7461c9c89cbd62094cfd52f631f95001 /usr | |
parent | 5c15bb8217e8e0fb189cf162c233704dd13b737e (diff) | |
download | piny-code-e448007d21a2fd89ef42085bc29beb2883eb35ff.tar.gz piny-code-e448007d21a2fd89ef42085bc29beb2883eb35ff.zip |
Fix checking owner in addaccess/rmaccess.
Diffstat (limited to 'usr')
-rwxr-xr-x | usr/local/sbin/addaccess | 2 | ||||
-rwxr-xr-x | usr/local/sbin/rmaccess | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/usr/local/sbin/addaccess b/usr/local/sbin/addaccess index e2817ca..f0a4324 100755 --- a/usr/local/sbin/addaccess +++ b/usr/local/sbin/addaccess @@ -11,7 +11,7 @@ my ( $reponame, @users ) = @ARGV; my $repo = Piny::Repo->new( $reponame ); -if ( $repo->user->uid != $env->user->uid ) { +if ( $repo->owner->uid != $env->user->uid ) { print "You are not the owner of that repo!\n"; exit( 3 ); }; diff --git a/usr/local/sbin/rmaccess b/usr/local/sbin/rmaccess index 86b2dd0..563216d 100755 --- a/usr/local/sbin/rmaccess +++ b/usr/local/sbin/rmaccess @@ -11,7 +11,7 @@ my ( $reponame, @users ) = @ARGV; my $repo = Piny::Repo->new( $reponame ); -if ( $repo->user->uid != $env->user->uid ) { +if ( $repo->owner->uid != $env->user->uid ) { print "You are not the owner of that repo!\n"; exit( 3 ); }; |