summaryrefslogtreecommitdiff
path: root/os/auth.c
diff options
context:
space:
mode:
authorJon Turney <jon.turney@dronecode.org.uk>2018-05-13 18:30:18 +0100
committerJon Turney <jon.turney@dronecode.org.uk>2018-05-13 18:30:18 +0100
commit352e8a53ef0f5ad2777b792622e52e6e80dc7bb8 (patch)
tree5cea9f1d2cc3b7cbdfd75ea9431a9fea23a0b595 /os/auth.c
parent82f8fc5ffc0065537896ec43ae60d67d9a164c75 (diff)
parent545b84e824c7180bb3512c6a248a7c1ebf371698 (diff)
Merge branch 'cygwin-patches-for-1.20' into cygwin-release-1.20xserver-cygwin-1.20.0-2xserver-cygwin-1.20.0-1
Diffstat (limited to 'os/auth.c')
-rw-r--r--os/auth.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/os/auth.c b/os/auth.c
index da8b70985..675398625 100644
--- a/os/auth.c
+++ b/os/auth.c
@@ -208,11 +208,11 @@ CheckAuthorization(unsigned int name_length,
return (*protocols[i].Check) (data_length, data, client,
reason);
}
- *reason = "Protocol not supported by server\n";
+ *reason = "Authorization protocol not supported by server\n";
}
}
else
- *reason = "No protocol specified\n";
+ *reason = "Authorization required, but no authorization protocol specified\n";
return (XID) ~0L;
}