diff options
author | Werner Koch <[email protected]> | 2024-01-15 16:21:24 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2024-01-15 16:21:24 +0000 |
commit | daedb3c96549427ed84fba5c9ab3f9475a412243 (patch) | |
tree | 32aa1b804322f7561cf334b125542e42e155f162 /agent/gpg-agent.c | |
parent | po: Update parts of the Polish translation (diff) | |
download | gnupg-daedb3c96549427ed84fba5c9ab3f9475a412243.tar.gz gnupg-daedb3c96549427ed84fba5c9ab3f9475a412243.zip |
doc: Describe the ssh-agent protocol options for Windows.
--
Also fix a typo in a macro.
Diffstat (limited to 'agent/gpg-agent.c')
-rw-r--r-- | agent/gpg-agent.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/agent/gpg-agent.c b/agent/gpg-agent.c index 1db422737..b0150031d 100644 --- a/agent/gpg-agent.c +++ b/agent/gpg-agent.c @@ -366,7 +366,7 @@ static int putty_support; /* Path to the pipe, which handles requests from Win32-OpenSSH. */ static const char *win32_openssh_support; -#define W32_DEFAILT_AGENT_PIPE_NAME "\\\\.\\pipe\\openssh-ssh-agent" +#define W32_DEFAULT_AGENT_PIPE_NAME "\\\\.\\pipe\\openssh-ssh-agent" #endif /*HAVE_W32_SYSTEM*/ /* The list of open file descriptors at startup. Note that this list @@ -1295,7 +1295,7 @@ main (int argc, char **argv) if (pargs.r_type) win32_openssh_support = pargs.r.ret_str; else - win32_openssh_support = W32_DEFAILT_AGENT_PIPE_NAME; + win32_openssh_support = W32_DEFAULT_AGENT_PIPE_NAME; # endif break; |