Verified Commit cfc9319e authored by Pier Angelo Vendrame's avatar Pier Angelo Vendrame 🎃
Browse files

fixup! Bug 4234: Use the Firefox Update Process for Base Browser.

Bug 41668: Port some updater patches to Base Browser

Fix a build error on Windows.
parent 32b0c6ed
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -851,13 +851,11 @@ static int ensure_copy_recursive(const NS_tchar* path, const NS_tchar* dest,
    return READ_ERROR;
  }

#ifdef XP_WIN
#ifdef XP_UNIX
  if (S_ISLNK(sInfo.st_mode)) {
    return ensure_copy_symlink(path, dest);
  }
#endif

#ifdef XP_UNIX
  // Ignore Unix domain sockets. See #20691.
  if (S_ISSOCK(sInfo.st_mode)) {
    return 0;