From: SourceForge.net <no...@so...> - 2011-09-14 19:05:41
|
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 |