Mercurial > gftp.yaz
changeset 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 | c197c8fb1e62 |
children | eaede7f6c2f8 |
files | ChangeLog src/gtk/chmod_dialog.c |
diffstat | 2 files changed, 7 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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 <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 + 2004-12-20 Brian Masney <masneyb@gftp.org> * 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
--- 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;