diff options
author | 2003-05-24 09:30:39 +0000 | |
---|---|---|
committer | 2003-05-24 09:30:39 +0000 | |
commit | 4b7dbe6e41fb2248c7678d6cd9657d8d598ff425 (patch) | |
tree | e6e000bfa34b8860d767ddebe6b04b043eefa1c0 /usr.bin/ssh/authfile.c | |
parent | pass logged data through strnvis; ok markus (diff) | |
download | wireguard-openbsd-4b7dbe6e41fb2248c7678d6cd9657d8d598ff425.tar.xz wireguard-openbsd-4b7dbe6e41fb2248c7678d6cd9657d8d598ff425.zip |
cast some types for printing; ok markus@
Diffstat (limited to 'usr.bin/ssh/authfile.c')
-rw-r--r-- | usr.bin/ssh/authfile.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/authfile.c b/usr.bin/ssh/authfile.c index 944e88fa80e..6133ec1f67f 100644 --- a/usr.bin/ssh/authfile.c +++ b/usr.bin/ssh/authfile.c @@ -36,7 +36,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: authfile.c,v 1.53 2003/05/11 16:56:48 markus Exp $"); +RCSID("$OpenBSD: authfile.c,v 1.54 2003/05/24 09:30:39 djm Exp $"); #include <openssl/err.h> #include <openssl/evp.h> @@ -511,7 +511,7 @@ key_perm_ok(int fd, const char *filename) error("@ WARNING: UNPROTECTED PRIVATE KEY FILE! @"); error("@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@"); error("Permissions 0%3.3o for '%s' are too open.", - st.st_mode & 0777, filename); + (u_int)st.st_mode & 0777, filename); error("It is recommended that your private key files are NOT accessible by others."); error("This private key will be ignored."); return 0; |