summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2021-11-28 14:43:31 -0800
committerAlan Coopersmith <alan.coopersmith@oracle.com>2021-11-28 14:43:31 -0800
commite392ce8ef3bfd47ecd4b851e50736665b55140bc (patch)
treeb4bdbe4f2da04e93328097eec9bd1a2f07dccd10
parent3d08d1b100a171ea9faa1a6d3f5c618172152840 (diff)
Fix spelling/wording issues
Found by using: codespell --builtin clear,rare,usage,informal,code,names Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r--README.md2
-rw-r--r--process.c6
2 files changed, 4 insertions, 4 deletions
diff --git a/README.md b/README.md
index 9de0939..633edaf 100644
--- a/README.md
+++ b/README.md
@@ -7,7 +7,7 @@ Xorg mailing list:
https://lists.x.org/mailman/listinfo/xorg
-The master development code repository can be found at:
+The primary development code repository can be found at:
https://gitlab.freedesktop.org/xorg/app/iceauth
diff --git a/process.c b/process.c
index 91729c1..1c73829 100644
--- a/process.c
+++ b/process.c
@@ -472,7 +472,7 @@ static Bool iceauth_existed = False; /* if was present at initialize */
static Bool iceauth_modified = False; /* if added, removed, or merged */
static Bool iceauth_allowed = True; /* if allowed to write auth file */
static char *iceauth_filename = NULL;
-static volatile Bool dieing = False;
+static volatile Bool dying = False;
/* poor man's puts(), for under signal handlers */
#define WRITES(fd, S) (void)write((fd), (S), strlen((S)))
@@ -480,7 +480,7 @@ static volatile Bool dieing = False;
/* ARGSUSED */
static void die (_X_UNUSED int sig)
{
- dieing = True;
+ dying = True;
_exit (auth_finalize ());
/* NOTREACHED */
}
@@ -652,7 +652,7 @@ int auth_finalize (void)
char temp_name[1024]; /* large filename size */
if (iceauth_modified) {
- if (dieing) {
+ if (dying) {
if (verbose) {
/*
* called from a signal handler -- printf is *not* reentrant; also