diff src/gtk/chmod_dialog.c @ 648:86a110c13b8e

2004-12-24 Brian Masney <masneyb@gftp.org> * src/gtk/chmod-dialog.c (dochmod) - fixes for the group execute permission. If that checkbox was active, then write permissions for others was enabled
author masneyb
date Fri, 24 Dec 2004 11:26:52 +0000
parents 7262851e3ae8
children 877282be3a78
line wrap: on
line diff
--- a/src/gtk/chmod_dialog.c	Tue Dec 21 01:30:20 2004 +0000
+++ b/src/gtk/chmod_dialog.c	Fri Dec 24 11:26:52 2004 +0000
@@ -80,7 +80,7 @@
   if (GTK_TOGGLE_BUTTON (gw)->active)
     mode |= S_IWGRP;
   if (GTK_TOGGLE_BUTTON (gx)->active)
-    mode |= S_IWOTH;
+    mode |= S_IXGRP;
 
   if (GTK_TOGGLE_BUTTON (or)->active)
     mode |= S_IROTH;