Tracker item #3409598, was opened at 2011-09-14 12:05
Message generated for change (Comment added) made by mvanzin
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: Closed
>Resolution: Fixed
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)) {

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

>Comment By: Marcelo Vanzin (mvanzin)
Date: 2011-09-29 09:47

Message:
Commit id a4343bae.

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

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

------------------------------------------------------------------------------
All the data continuously generated in your IT infrastructure contains a
definitive record of customers, application performance, security
threats, fraudulent activity and more. Splunk takes this data and makes
sense of it. Business sense. IT sense. Common sense.
http://p.sf.net/sfu/splunk-d2dcopy1
_______________________________________________
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