Custom Query (245 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (7 - 9 of 245)

1 2 3 4 5 6 7 8 9 10 11 12 13
Ticket Resolution Summary Owner Reporter
#319 fixed the executable named after a option is created if -o is not specified KO Myung-Hun
Description

Hi/2.

For examples,

gcc -lc test.c

creates -lc.exe instead of test.exe

Similarily,

gcc -Wl,-Bstatic test.c

creates -Bstatic.exe not test.exe.

#206 wontfix the NDFS32 file system can handle EAs, at least with SMB plugin bird Yuri Dario
Description

Also the NDFS32 file system driver can handle extended attributes, at least with SMB plugin. Probably also the local and ramfs plugins could too.

Unfortunately this feature depends on the plugin used and so it depends on the mounted resource. This means a NDFS32 drive can handle EAs for some directories only.

The following patch enables EAs for NDFS32 too:

Index: fs.c
===================================================================
--- fs.c	(revision 3650)
+++ fs.c	(working copy)
@@ -1817,6 +1817,7 @@
         strncat(pFsInfo->szName, (const char *)&pfsqb->szName[pfsqb->cbName + 1], sizeof(pFsInfo->szName) - 1);
     if (    !strcmp(pFsInfo->szName, "JFS")
         ||  !strcmp(pFsInfo->szName, "HPFS")
+        ||  !strcmp(pFsInfo->szName, "NDFS32")
         ||  !strcmp(pFsInfo->szName, "FAT"))
     {
         pFsInfo->fZeroNewBytes  = 1;

I wonder what happens if drives are added/removed while a libc program is running, not only for netdrive but also for lvm.

#1 invalid test ticket bird bird
Description

test ticked

1 2 3 4 5 6 7 8 9 10 11 12 13
Note: See TracQuery for help on using queries.