diff options
| author | Andreas Schneider <mail@cynapses.org> | 2010-05-11 02:08:29 +0200 |
|---|---|---|
| committer | Andreas Schneider <mail@cynapses.org> | 2010-05-11 09:52:06 +0200 |
| commit | 9d7fc9d50b895650f1ec301021b4a202a0fcb3cb (patch) | |
| tree | b3ace2422d959b40669021e1848f2973eba63422 /include/libssh | |
| parent | b8bc3a658248692a3d4548fca54201f34713927c (diff) | |
| download | libssh-9d7fc9d50b895650f1ec301021b4a202a0fcb3cb.tar.gz libssh-9d7fc9d50b895650f1ec301021b4a202a0fcb3cb.tar.xz libssh-9d7fc9d50b895650f1ec301021b4a202a0fcb3cb.zip | |
Use the new expand functions.
This implements escape chars for IdentityFile in ssh_config and reads
the system ssh_config.
Diffstat (limited to 'include/libssh')
| -rw-r--r-- | include/libssh/priv.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/libssh/priv.h b/include/libssh/priv.h index dd1031d0..d9bd02e7 100644 --- a/include/libssh/priv.h +++ b/include/libssh/priv.h @@ -249,8 +249,8 @@ int gettimeofday(struct timeval *__p, void *__t); /* options.c */ -char *dir_expand_dup(ssh_session session, const char *value, int allowsshdir); int ssh_options_set_algo(ssh_session session, int algo, const char *list); +int ssh_options_apply(ssh_session session); /** Free memory space */ #define SAFE_FREE(x) do { if ((x) != NULL) {free(x); x=NULL;} } while(0) |
