summaryrefslogtreecommitdiff
path: root/openbsd-compat/glob.h
Commit message (Collapse)AuthorAgeFilesLines
* - (tim) [openbsd-compat/glob.h] Remove sys/cdefs.h include that came withtim2010-10-251-1/+0
| | | | | 1.12 to unbreak Solaris build. ok djm@
* sadly, two typos on one line is not my best recorddjm2010-10-071-1/+1
|
* unbreak previousdjm2010-10-071-1/+1
|
* - djm@cvs.openbsd.org 2010/09/25 09:30:16djm2010-10-071-5/+9
| | | | | | | | [sftp.c configure.ac openbsd-compat/glob.c openbsd-compat/glob.h] make use of new glob(3) GLOB_KEEPSTAT extension to save extra server rountrips to fetch per-file stat(2) information. NB. update openbsd-compat/ glob(3) implementation from OpenBSD libc to match.
* - (dtucker) [configure.ac openbsd-compat/glob.{c,h}] Bug #1407: force use ofdtucker2007-12-311-1/+2
| | | | | builtin glob implementation on Mac OS X. Based on a patch from vgiffin at apple.
* - millert@cvs.openbsd.org 2004/10/07 16:56:11djm2007-10-261-9/+8
| | | | | | GLOB_NOESCAPE is POSIX so move it out of the #ifndef _POSIX_SOURCE block. (NB. mostly an RCS ID sync, as portable strips out the conditionals)
* - (dtucker) [configure.ac includes.h openbsd-compat/glob.{c,h}] Explicitlydtucker2006-09-011-1/+2
| | | | | | | test for GLOB_NOMATCH and use our glob functions if it's not found. Stops sftp from segfaulting when attempting to get a nonexistent file on Cygwin (previous versions of OpenSSH didn't use the native glob). Partly from and tested by Corinna Vinschen.
* - (dtucker) [openbsd-compat/glob.h] Update from OpenBSD 1.8 -> 1.9.dtucker2005-11-101-2/+2
|
* - (dtucker) [openbsd-compat/{LOTS}] Move the "OPENBSD ORIGINAL" markers todtucker2005-11-101-2/+2
| | | | | after the copyright notices. Having them at the top next to the CVSIDs guarantees a conflict for each and every sync.
* - (djm) Annotate OpenBSD-derived files in openbsd-compat/ with originaldjm2003-11-241-0/+2
| | | | source file path (in OpenBSD tree).
* - (djm) Sync openbsd-compat with OpenBSD CVS.djm2003-06-031-6/+2
| | | | - No more 4-term BSD licenses in our tree
* - (djm) Sync openbsd-compat with OpenBSD -currentdjm2002-09-111-9/+9
|
* - (bal) Oops. Missed globc.h change (OpenBSD CVS).mouring2001-03-191-1/+2
|
* - Check for gl_matchc support in glob_t and fall back to themouring2001-03-171-2/+4
| | | | openbsd-compat/glob.[ch] support if it does not exist.
* - (djm) Add replacement glob() from OpenBSD libc if the system glob isdjm2001-03-141-0/+98
missing or lacks the GLOB_ALTDIRFUNC extension - (djm) Remove -I$(srcdir)/openbsd-compat from CFLAGS, refer to headers relatively. Avoids conflict between glob.h and /usr/include/glob.h