diff options
author | 2005-10-30 08:52:17 +0000 | |
---|---|---|
committer | 2005-10-30 08:52:17 +0000 | |
commit | 14ef0d14f05ec1bcc9342c4cc662695b9d2ed893 (patch) | |
tree | 5e08922f3452c621a0f0207b5e5d227e229fa237 /usr.bin/ssh/ssh.c | |
parent | remove trailing spaces; (diff) | |
download | wireguard-openbsd-14ef0d14f05ec1bcc9342c4cc662695b9d2ed893.tar.xz wireguard-openbsd-14ef0d14f05ec1bcc9342c4cc662695b9d2ed893.zip |
no need to escape single quotes in comments, no binary change
Diffstat (limited to 'usr.bin/ssh/ssh.c')
-rw-r--r-- | usr.bin/ssh/ssh.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ssh/ssh.c b/usr.bin/ssh/ssh.c index 7993f9a2385..9e54226e012 100644 --- a/usr.bin/ssh/ssh.c +++ b/usr.bin/ssh/ssh.c @@ -40,7 +40,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: ssh.c,v 1.253 2005/10/30 04:03:24 djm Exp $"); +RCSID("$OpenBSD: ssh.c,v 1.254 2005/10/30 08:52:18 djm Exp $"); #include <openssl/evp.h> #include <openssl/err.h> @@ -687,7 +687,7 @@ again: /* * Now that we are back to our own permissions, create ~/.ssh - * directory if it doesn\'t already exist. + * directory if it doesn't already exist. */ snprintf(buf, sizeof buf, "%.100s%s%.100s", pw->pw_dir, strcmp(pw->pw_dir, "/") ? "/" : "", _PATH_SSH_USER_DIR); if (stat(buf, &st) < 0) @@ -799,7 +799,7 @@ static void check_agent_present(void) { if (options.forward_agent) { - /* Clear agent forwarding if we don\'t have an agent. */ + /* Clear agent forwarding if we don't have an agent. */ if (!ssh_agent_present()) options.forward_agent = 0; } |