diff options
author | Brian Smith <brian@dbsoft.org> | 2022-06-15 01:29:53 -0500 |
---|---|---|
committer | Brian Smith <brian@dbsoft.org> | 2022-06-15 01:29:53 -0500 |
commit | 5e9342a622e25b7179e31324b268a42dca5ff6f5 (patch) | |
tree | c066a387c8faf39adcd02e27ca9cfa1d28e46430 /netwerk | |
parent | f924d979d537fe9ed871ad9753b71e043b740d96 (diff) | |
download | uxp-5e9342a622e25b7179e31324b268a42dca5ff6f5.tar.gz |
Issue #1905 - Part 4c - Follow Firefox and Safari in reporting "Intel" for Mac ARM64 devices.
Based on Mozilla bug 1655285.
Diffstat (limited to 'netwerk')
-rw-r--r-- | netwerk/protocol/http/nsHttpHandler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/netwerk/protocol/http/nsHttpHandler.cpp b/netwerk/protocol/http/nsHttpHandler.cpp index 7b6dcc0216..92cf9d5b54 100644 --- a/netwerk/protocol/http/nsHttpHandler.cpp +++ b/netwerk/protocol/http/nsHttpHandler.cpp @@ -830,7 +830,7 @@ nsHttpHandler::InitUserAgentComponents() #elif defined (XP_MACOSX) #if defined(__ppc__) mOscpu.AssignLiteral("PPC Mac OS X"); -#elif defined(__i386__) || defined(__x86_64__) +#else mOscpu.AssignLiteral("Intel Mac OS X"); #endif SInt32 majorVersion = nsCocoaFeatures::macOSVersionMajor(); |