diff options
author | Antoine Ginies <aginies@mandriva.com> | 2005-08-24 14:11:19 +0000 |
---|---|---|
committer | Antoine Ginies <aginies@mandriva.com> | 2005-08-24 14:11:19 +0000 |
commit | bbab5dc967f92cffb94a308758b89996ad4f8e32 (patch) | |
tree | 6a510e6b31468896f816d2345e1e5a254f535e17 | |
parent | 9de983adab709c1e953abc4fe2217247ffb7d5e9 (diff) | |
download | drakx-bbab5dc967f92cffb94a308758b89996ad4f8e32.tar drakx-bbab5dc967f92cffb94a308758b89996ad4f8e32.tar.gz drakx-bbab5dc967f92cffb94a308758b89996ad4f8e32.tar.bz2 drakx-bbab5dc967f92cffb94a308758b89996ad4f8e32.tar.xz drakx-bbab5dc967f92cffb94a308758b89996ad4f8e32.zip |
fix inherit_permission pb
-rwxr-xr-x | perl-install/standalone/draksambashare | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/standalone/draksambashare b/perl-install/standalone/draksambashare index 35566fd64..9e8d35b63 100755 --- a/perl-install/standalone/draksambashare +++ b/perl-install/standalone/draksambashare @@ -265,7 +265,7 @@ sub modify_entry { $_ = Gtk2::OptionMenu->new foreach $browseable, $public, $writable, $default_case, $preserve_case, $hide_files, $hide_dot_files, $inherit_permissions; $default_case->set_popdown_strings(@default_case); - $_->set_popdown_strings(@yesno) foreach $browseable, $public, $writable, $hide_files, $hide_dot_files, $preserve_case; + $_->set_popdown_strings(@yesno) foreach $browseable, $public, $writable, $hide_files, $hide_dot_files, $preserve_case, $inherit_permissions; my $file_dialog = $fdwidget->($dir, ""); my $button = Gtk2::Button->new_from_stock('gtk-open'); |