summaryrefslogtreecommitdiff
path: root/process.c
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2021-11-28 15:03:37 -0800
committerAlan Coopersmith <alan.coopersmith@oracle.com>2021-11-28 15:04:58 -0800
commit1bfa5bff47654213f1d40af64bae0e9e23b4bed4 (patch)
tree2d88ac62dd10278c442e57c8ecfeee192146eb5a /process.c
parentc2811c953620cf946269db2b74b29e0dc707e26a (diff)
downloadxorg-app-xauth-1bfa5bff47654213f1d40af64bae0e9e23b4bed4.tar.gz
Fix spelling/wording issues
Found by using: codespell --builtin clear,rare,usage,informal,code,names Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'process.c')
-rw-r--r--process.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/process.c b/process.c
index cda6fd7..eb89751 100644
--- a/process.c
+++ b/process.c
@@ -652,7 +652,7 @@ static Bool xauth_modified = False; /* if added, removed, or merged */
static Bool xauth_allowed = True; /* if allowed to write auth file */
static Bool xauth_locked = False; /* if has been locked */
static const char *xauth_filename = NULL;
-static volatile Bool dieing = False;
+static volatile Bool dying = False;
/* poor man's puts(), for under signal handlers,
@@ -664,7 +664,7 @@ _X_NORETURN
static void
die(int sig)
{
- dieing = True;
+ dying = True;
_exit (auth_finalize ());
/* NOTREACHED */
}
@@ -880,7 +880,7 @@ auth_finalize(void)
char temp_name[1025]; /* large filename size */
if (xauth_modified) {
- if (dieing) {
+ if (dying) {
if (verbose) {
/*
* called from a signal handler -- printf is *not* reentrant; also