summaryrefslogtreecommitdiff
path: root/usr/src/cmd/mailx/main.c
diff options
context:
space:
mode:
authorDaniel Hoffman <dj.hoffman@delphix.com>2017-02-17 11:48:20 -0800
committerMatthew Ahrens <mahrens@delphix.com>2017-02-22 11:43:07 -0800
commit48bbca816818409505a6e214d0911fda44e622e3 (patch)
tree7b823654982b246c7df6ae378d344139fde35b51 /usr/src/cmd/mailx/main.c
parente40108ff341f07fe03e96c751c6cf2cb5867d1a8 (diff)
downloadillumos-gate-48bbca816818409505a6e214d0911fda44e622e3.tar.gz
7812 Remove gender specific language
Reviewed by: Matt Ahrens <mahrens@delphix.com> Reviewed by: Prakash Surya <prakash.surya@delphix.com> Reviewed by: Steve Gonczi <steve.gonczi@delphix.com> Reviewed by: Chris Williamson <chris.williamson@delphix.com> Reviewed by: George Wilson <george.wilson@delphix.com> Reviewed by: Igor Kozhukhov <igor@dilos.org> Reviewed by: Dan McDonald <danmcd@omniti.com> Reviewed by: Robert Mustacchi <rm@joyent.com> Approved by: Richard Lowe <richlowe@richlowe.net>
Diffstat (limited to 'usr/src/cmd/mailx/main.c')
-rw-r--r--usr/src/cmd/mailx/main.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/usr/src/cmd/mailx/main.c b/usr/src/cmd/mailx/main.c
index 0271552bea..f9819ca4a0 100644
--- a/usr/src/cmd/mailx/main.c
+++ b/usr/src/cmd/mailx/main.c
@@ -22,6 +22,7 @@
/*
* Copyright 2006 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
+ * Copyright (c) 2016 by Delphix. All rights reserved.
*/
/* Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T */
@@ -56,7 +57,7 @@ static jmp_buf hdrjmp;
const char *const version = "mailx version 5.0";
/*
- * Find out who the user is, copy his mail file (if exists) into
+ * Find out who the user is, copy their mail file (if exists) into
* /tmp/Rxxxxx and set up the message pointers. Then, print out the
* message headers and read user commands.
*
@@ -68,7 +69,7 @@ const char *const version = "mailx version 5.0";
* and a bunch of other options.
*/
-int
+int
main(int argc, char **argv)
{
register char *ef;
@@ -244,8 +245,8 @@ main(int argc, char **argv)
/*
* User is specifying file to "edit" with mailx,
* as opposed to reading system mailbox.
- * If no argument is given after -f, we read his/her
- * $MBOX file or mbox in his/her home directory.
+ * If no argument is given after -f, we read their
+ * $MBOX file or mbox in their home directory.
*/
ef = (argc == optind || *argv[optind] == '-')
? "" : argv[optind++];
@@ -444,7 +445,7 @@ gettext("Usage: %s -eiIUdFntBNHvV~ -T FILE -u USER -h hops -r address\n"),
/*
* Interrupt printing of the headers.
*/
-static void
+static void
#ifdef __cplusplus
hdrstop(int)
#else