summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
Diffstat (limited to 'bin')
-rwxr-xr-xbin/draksambashare4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/draksambashare b/bin/draksambashare
index 42d864d..f3bd4ff 100755
--- a/bin/draksambashare
+++ b/bin/draksambashare
@@ -1264,7 +1264,7 @@ sub global_special_options() {
}
my $conf = "/etc/group";
- my @groups = map { if_(m/^([^#:]+):[^:]+:([^:]+):/ and $2 > 499, $1) } cat_($conf);
+ my @groups = map { if_(m/^([^#:]+):[^:]+:([^:]+):/ && $2 > 499, $1) } cat_($conf);
foreach (@groups) {
system(qw(net groupmap add), "unixgroup=$_", "ntgroup=$_");
}
@@ -1493,6 +1493,6 @@ $W->add(gtkpack_(Gtk3::VBox->new(0,0),
),
);
-check_first_launch;
+check_first_launch();
$W->show_all;
Gtk3->main;