Skip to content

Commit

Permalink
Bug 920750 - Disable update xml certificate checks on Mac OS X. r=bbondy
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert Strong committed Apr 8, 2015
1 parent 140d2fa commit 5f2d40a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions browser/app/profile/firefox.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,10 +102,10 @@ pref("app.update.log", false);
pref("app.update.backgroundMaxErrors", 10);

// The aus update xml certificate checks for application update are disabled on
// Windows since the mar signature check which is currently only implemented on
// Windows is sufficient for preventing us from applying a mar that is not
// Windows and Mac OS X since the mar signature check are implemented on these
// platforms and is sufficient to prevent us from applying a mar that is not
// valid.
#ifdef XP_WIN
#if defined(XP_WIN) || defined(XP_MACOSX)
pref("app.update.cert.requireBuiltIn", false);
pref("app.update.cert.checkAttributes", false);
#else
Expand Down

0 comments on commit 5f2d40a

Please sign in to comment.