# HG changeset patch # User masneyb # Date 1097196811 0 # Node ID 741fc54b48696106cf039885b12d370012a20a7f # Parent 74c9b951a442398d996100d06254603171c44c76 2004-10-7 Brian Masney * src/gtk/gftpuicallbacks.c (gftpui_common_run_ls) - if the .. directory was not found and an entry is to be created, make sure the attributes are set to drwx------ (previously it was d---------) diff -r 74c9b951a442 -r 741fc54b4869 ChangeLog --- a/ChangeLog Wed Oct 06 18:38:04 2004 +0000 +++ b/ChangeLog Fri Oct 08 00:53:31 2004 +0000 @@ -1,3 +1,8 @@ +2004-10-7 Brian Masney + * src/gtk/gftpuicallbacks.c (gftpui_common_run_ls) - if the .. + directory was not found and an entry is to be created, make sure + the attributes are set to drwx------ (previously it was d---------) + 2004-10-5 Brian Masney * src/gtk/menu-items.c (dosavelog, viewlog) - make sure the entire log is written out when multibyte characters are used @@ -2945,7 +2950,7 @@ * cvsclean - added this script - * *.[ch] - added $Id: ChangeLog,v 1.344 2004/10/06 02:32:41 masneyb Exp $ tags + * *.[ch] - added $Id: ChangeLog,v 1.345 2004/10/08 00:53:31 masneyb Exp $ tags * debian/* - updated files from Debian maintainer diff -r 74c9b951a442 -r 741fc54b4869 src/uicommon/gftpuicallbacks.c --- a/src/uicommon/gftpuicallbacks.c Wed Oct 06 18:38:04 2004 +0000 +++ b/src/uicommon/gftpuicallbacks.c Fri Oct 08 00:53:31 2004 +0000 @@ -106,7 +106,7 @@ fle->file = g_strdup (".."); fle->user = g_malloc0 (1); fle->group = g_malloc0 (1); - fle->st_mode |= S_IFDIR; + fle->st_mode = S_IFDIR | S_IRUSR | S_IWUSR | S_IXUSR; cdata->files = g_list_prepend (cdata->files, fle); }