Index: /trunk/src/VBox/Main/include/GuestSessionImpl.h
===================================================================
--- /trunk/src/VBox/Main/include/GuestSessionImpl.h	(revision 78037)
+++ /trunk/src/VBox/Main/include/GuestSessionImpl.h	(revision 78038)
@@ -283,5 +283,5 @@
     inline bool             i_directoryExists(uint32_t uDirID, ComObjPtr<GuestDirectory> *pDir);
     int                     i_directoryUnregister(GuestDirectory *pDirectory);
-    int                     i_directoryRemove(const Utf8Str &strPath, uint32_t uFlags, int *pGuestRc);
+    int                     i_directoryRemove(const Utf8Str &strPath, uint32_t fFlags, int *pGuestRc);
     int                     i_directoryCreate(const Utf8Str &strPath, uint32_t uMode, uint32_t uFlags, int *pGuestRc);
     int                     i_directoryOpen(const GuestDirectoryOpenInfo &openInfo,
Index: /trunk/src/VBox/Main/src-client/GuestSessionImpl.cpp
===================================================================
--- /trunk/src/VBox/Main/src-client/GuestSessionImpl.cpp	(revision 78037)
+++ /trunk/src/VBox/Main/src-client/GuestSessionImpl.cpp	(revision 78038)
@@ -1023,10 +1023,10 @@
 }
 
-int GuestSession::i_directoryRemove(const Utf8Str &strPath, uint32_t uFlags, int *prcGuest)
-{
-    AssertReturn(!(uFlags & ~DIRREMOVEREC_FLAG_VALID_MASK), VERR_INVALID_PARAMETER);
+int GuestSession::i_directoryRemove(const Utf8Str &strPath, uint32_t fFlags, int *prcGuest)
+{
+    AssertReturn(!(fFlags & ~DIRREMOVEREC_FLAG_VALID_MASK), VERR_INVALID_PARAMETER);
     AssertPtrReturn(prcGuest, VERR_INVALID_POINTER);
 
-    LogFlowThisFunc(("strPath=%s, uFlags=0x%x\n", strPath.c_str(), uFlags));
+    LogFlowThisFunc(("strPath=%s, uFlags=0x%x\n", strPath.c_str(), fFlags));
 
     AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
@@ -1043,5 +1043,5 @@
     HGCMSvcSetPv(&paParms[i++], (void*)strPath.c_str(),
                             (ULONG)strPath.length() + 1);
-    HGCMSvcSetU32(&paParms[i++], uFlags);
+    HGCMSvcSetU32(&paParms[i++], fFlags);
 
     alock.release(); /* Drop write lock before sending. */
@@ -3465,8 +3465,8 @@
 
     /* No flags; only remove the directory when empty. */
-    uint32_t uFlags = 0;
+    uint32_t fFlags = DIRREMOVEREC_FLAG_NONE;
 
     int rcGuest;
-    int vrc = i_directoryRemove(aPath, uFlags, &rcGuest);
+    int vrc = i_directoryRemove(aPath, fFlags, &rcGuest);
     if (RT_FAILURE(vrc))
     {
