diff options
author | des <des@FreeBSD.org> | 2009-11-10 09:45:43 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 2009-11-10 09:45:43 +0000 |
commit | ca406db9c37748549fd0f7fab8fad80960ebd5c3 (patch) | |
tree | a617cd4b55e9230bf6f465d6690f4dbdec15e296 | |
parent | 9f026514d53caf6d0544f7ef8fce16dab8884294 (diff) | |
download | FreeBSD-src-ca406db9c37748549fd0f7fab8fad80960ebd5c3.zip FreeBSD-src-ca406db9c37748549fd0f7fab8fad80960ebd5c3.tar.gz |
Fix globbing
Noticed by: delphij, David Cornejo <dave@dogwood.com>
Forgotten by: des
-rw-r--r-- | crypto/openssh/ssh_namespace.h | 2 | ||||
-rw-r--r-- | secure/lib/libssh/Makefile | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/crypto/openssh/ssh_namespace.h b/crypto/openssh/ssh_namespace.h index 5a61eff..89978fc 100644 --- a/crypto/openssh/ssh_namespace.h +++ b/crypto/openssh/ssh_namespace.h @@ -223,6 +223,8 @@ #define get_u32 ssh_get_u32 #define get_u64 ssh_get_u64 #define getrrsetbyname ssh_getrrsetbyname +#define glob ssh_glob +#define globfree ssh_globfree #define host_hash ssh_host_hash #define hostfile_read_key ssh_hostfile_read_key #define hpdelim ssh_hpdelim diff --git a/secure/lib/libssh/Makefile b/secure/lib/libssh/Makefile index ecc1a92..32b5069 100644 --- a/secure/lib/libssh/Makefile +++ b/secure/lib/libssh/Makefile @@ -19,7 +19,7 @@ SRCS= acss.c authfd.c authfile.c bufaux.c bufbn.c buffer.c \ # compiled directly into sshd instead. # Portability layer -SRCS+= bsd-misc.c fmt_scaled.c getrrsetbyname.c \ +SRCS+= bsd-misc.c fmt_scaled.c getrrsetbyname.c glob.c \ openssl-compat.c port-tun.c strtonum.c vis.c xcrypt.c xmmap.c # FreeBSD additions SRCS+= version.c |