Skip to content

Commit

Permalink
Updates references to OSX to macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
randall committed Oct 24, 2019
1 parent 0a45563 commit c26b06e
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ are a few simple rules to follow:
**WIP** label.

8. Make sure you run **clang-format** before making the _PR_. This is easiest
done with e.g. "make clang-format", which works on OSX and Linux.
done with e.g. "make clang-format", which works on macOS and Linux.

9. When making backports, make sure you mark the _PR_ for the appropriate
Github branch (e.g. **6.2.x**).
Expand Down
2 changes: 1 addition & 1 deletion INSTALL
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ BUILD AND INSTALLATION
Configure & Build from Git source tree:
$ autoreconf -if # generate the configure script and Makefile.in files

On Linux, OSX:
On Linux and macOS:
$ ./configure [--prefix=PREFIX]
$ make

Expand Down
2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ plugins to build large scale web applications.
libtool
linux-headers

OSX (we recommend HomeBrew):
macOS (we recommend HomeBrew):
autoconf
automake
pkg-config
Expand Down
2 changes: 1 addition & 1 deletion doc/admin-guide/performance/index.en.rst
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ FreeBSD
OmniOS / illumos
----------------

Mac OS X
macOS
--------

Traffic Server Tuning
Expand Down
2 changes: 1 addition & 1 deletion iocore/cache/Cache.cc
Original file line number Diff line number Diff line change
Expand Up @@ -670,7 +670,7 @@ CacheProcessor::start_internal(int flags)
}

// It's actually common that the hardware I/O size is larger than the store block size as
// storage systems increasingly want larger I/Os. For example, on OS X, the filesystem block
// storage systems increasingly want larger I/Os. For example, on macOS, the filesystem block
// size is always reported as 1MB.
if (sd->hw_sector_size <= 0 || sector_size > STORE_BLOCK_SIZE) {
Note("resetting hardware sector size from %d to %d", sector_size, STORE_BLOCK_SIZE);
Expand Down
2 changes: 1 addition & 1 deletion plugins/authproxy/authproxy.cc
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,7 @@ StateAuthProxySendResponse(AuthRequestContext *auth, void * /* edata ATS_UNUSED

// We must not whack the content length for HEAD responses, since the
// client already knows that there is no body. Forcing content length to
// zero breaks hdiutil(1) on Mac OS X.
// zero breaks hdiutil(1) on macOS
if (TS_HTTP_METHOD_HEAD != auth->method) {
HttpSetMimeHeader(mbuf, mhdr, TS_MIME_FIELD_CONTENT_LENGTH, 0u);
}
Expand Down

0 comments on commit c26b06e

Please sign in to comment.