# HG changeset patch # User masneyb # Date 1103887612 0 # Node ID 86a110c13b8eeea9c152d9ceb0715ab143244afe # Parent c197c8fb1e62de58936db2a64d68caf4063096ea 2004-12-24 Brian Masney * src/gtk/chmod-dialog.c (dochmod) - fixes for the group execute permission. If that checkbox was active, then write permissions for others was enabled diff -r c197c8fb1e62 -r 86a110c13b8e ChangeLog --- a/ChangeLog Tue Dec 21 01:30:20 2004 +0000 +++ b/ChangeLog Fri Dec 24 11:26:52 2004 +0000 @@ -1,3 +1,8 @@ +2004-12-24 Brian Masney + * src/gtk/chmod-dialog.c (dochmod) - fixes for the group execute + permission. If that checkbox was active, then write permissions for + others was enabled + 2004-12-20 Brian Masney * lib/rfc959.c lib/ftpcommon.h - removed the quote filename functionality in the SITE CHMOD and SITE UTIME commands @@ -3159,7 +3164,7 @@ * cvsclean - added this script - * *.[ch] - added $Id: ChangeLog,v 1.381 2004/12/21 01:30:20 masneyb Exp $ tags + * *.[ch] - added $Id: ChangeLog,v 1.382 2004/12/24 11:26:52 masneyb Exp $ tags * debian/* - updated files from Debian maintainer diff -r c197c8fb1e62 -r 86a110c13b8e src/gtk/chmod_dialog.c --- 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;