diff options
author | Christian Pointner <equinox@helsinki.at> | 2010-03-09 16:50:04 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@helsinki.at> | 2010-03-09 16:50:04 (GMT) |
commit | 0186a646f0bad0a47209aaea9febf17d4fbd16d7 (patch) | |
tree | 5a80a483d820f259996bcfe151ec229439f878c1 /rhimport | |
parent | 251534965c8fe8d3942e22b23b30de577f5c8297 (diff) |
using /usr/bin/id instead of environment (more secure!)
git-svn-id: https://svn.helsinki.at/rhimport/trunk@22 7c65635b-ec39-4f67-a626-873dbafdd612
Diffstat (limited to 'rhimport')
-rwxr-xr-x | rhimport | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -65,10 +65,10 @@ EOF exit; } -my $user = $ENV{'USER'}; -$user or die "Username not found in environment"; +my $user = `/usr/bin/id -un`; +$user =~ s/\n//; -my $dbh = DBI->connect( "DBI:mysql:$DB:$DBHOST","$DBUSER","$DBPW") or die "Database Error: $DBI::errstr"; +my $dbh = DBI->connect("DBI:mysql:$DB:$DBHOST","$DBUSER","$DBPW") or die "Database Error: $DBI::errstr"; my $sql = qq{select USER_PERMS.GROUP_NAME,DROPBOXES.PATH from USER_PERMS, DROPBOXES where USER_PERMS.USER_NAME='$user' and DROPBOXES.GROUP_NAME=USER_PERMS.GROUP_NAME;}; my $sth = $dbh->prepare($sql); $sth->execute(); |