summaryrefslogtreecommitdiff
path: root/solenv
diff options
context:
space:
mode:
authorDavid Tardon <dtardon@redhat.com>2012-05-12 17:11:19 +0200
committerDavid Tardon <dtardon@redhat.com>2012-05-29 07:34:22 +0200
commit0502f73a6bd2be40a1757a4cf52e756fff1f771c (patch)
treeb100aa6c44220223eaf796312774f30f5f45675f /solenv
parent78aab1de75c05b47dab5c883c474b0fb42be8eb9 (diff)
show multiple assignments of gids as warning
Change-Id: Iae3e78e2abe59714d5eb9fa0609861a00e85c944
Diffstat (limited to 'solenv')
-rw-r--r--solenv/bin/modules/par2script/exiter.pm7
1 files changed, 3 insertions, 4 deletions
diff --git a/solenv/bin/modules/par2script/exiter.pm b/solenv/bin/modules/par2script/exiter.pm
index 24399422dc73..0c9213a35587 100644
--- a/solenv/bin/modules/par2script/exiter.pm
+++ b/solenv/bin/modules/par2script/exiter.pm
@@ -93,13 +93,12 @@ sub multidefinitionerror
sub multiassignmenterror
{
my ( $multiassignmentgids ) = @_;
- #print "************************************************\n";
- #print "ERROR: multiple assignments of gids:\n";
- #print "************************************************\n";
+ print "************************************************\n";
+ print "WARNING: multiple assignments of gids:\n";
+ print "************************************************\n";
my $line;
foreach $line ( @{$multiassignmentgids} ) { print "\t$line\n"; }
- # exit(-1);
}
#####################################