diff options
| author | Koichiro IWAO <meta@vmeta.jp> | 2017-05-26 16:49:33 +0900 |
|---|---|---|
| committer | metalefty <meta@vmeta.jp> | 2017-06-12 16:57:04 +0900 |
| commit | a1b0344db518c64f8d6a951bde9be5b90353b7a5 (patch) | |
| tree | 3a6d27b9328268294492ab38bd71ea15b31d852b /libxrdp/xrdp_rdp.c | |
| parent | 4f7969b562dee953c311f0d28b49ad2cf4ade2cf (diff) | |
| download | xrdp-proprietary-a1b0344db518c64f8d6a951bde9be5b90353b7a5.tar.gz xrdp-proprietary-a1b0344db518c64f8d6a951bde9be5b90353b7a5.zip | |
Use the words "cannot read" rather than "cannot open"
as the code actually tests readability.
Diffstat (limited to 'libxrdp/xrdp_rdp.c')
| -rw-r--r-- | libxrdp/xrdp_rdp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libxrdp/xrdp_rdp.c b/libxrdp/xrdp_rdp.c index 75b8768c..ea3f446e 100644 --- a/libxrdp/xrdp_rdp.c +++ b/libxrdp/xrdp_rdp.c @@ -272,7 +272,7 @@ xrdp_rdp_read_config(struct xrdp_client_info *client_info) if (!g_file_readable(client_info->certificate)) { - log_message(LOG_LEVEL_ERROR, "Cannot open certificate file %s: %s", + log_message(LOG_LEVEL_ERROR, "Cannot read certificate file %s: %s", client_info->certificate, g_get_strerror()); } } @@ -302,7 +302,7 @@ xrdp_rdp_read_config(struct xrdp_client_info *client_info) if (!g_file_readable(client_info->key_file)) { - log_message(LOG_LEVEL_ERROR, "Cannot open private key file %s: %s", + log_message(LOG_LEVEL_ERROR, "Cannot read private key file %s: %s", client_info->key_file, g_get_strerror()); } } |
