Tracker item #3409598, was opened at 2011-09-14 21:05
Message generated for change (Tracker Item Submitted) made by shark300
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=989708&aid=3409598&group_id=204462

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: None
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Hajdu Attila (shark300)
Assigned to: Nobody/Anonymous (nobody)
Summary: wrond dmask in hgfsmounter

Initial Comment:
On the 551th line of hgfsmounter.c :

static Bool
ParseDmask(const char *option,         // IN:  option string along with value
           HgfsMountInfo *mountInfo,   // OUT: mount data
           int *flags)                 // OUT: mount flags
{
   ASSERT(option);
   ASSERT(mountInfo);

   if (ParseMask(option, &mountInfo->fmask)) {
      LOG("Setting mount dmask to %o\n", mountInfo->dmask);
      return TRUE;
   }

   return FALSE;
}

if (ParseMask(option, &mountInfo->dmask)) {

instead

if (ParseMask(option, &mountInfo->fmask)) {

----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=989708&aid=3409598&group_id=204462

------------------------------------------------------------------------------
BlackBerry® DevCon Americas, Oct. 18-20, San Francisco, CA
Learn about the latest advances in developing for the 
BlackBerry® mobile platform with sessions, labs & more.
See new tools and technologies. Register for BlackBerry® DevCon today!
http://p.sf.net/sfu/rim-devcon-copy1 
_______________________________________________
open-vm-tools-devel mailing list
open-vm-tools-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/open-vm-tools-devel

Reply via email to