- (bal) Oops. Missed globc.h change (OpenBSD CVS).
This commit is contained in:
parent
11c78f8119
commit
9911f12083
|
@ -1,6 +1,7 @@
|
||||||
20010320
|
20010320
|
||||||
- (bal) glob.c update to added GLOB_LIMITS (OpenBSD CVS).
|
- (bal) glob.c update to added GLOB_LIMITS (OpenBSD CVS).
|
||||||
- (bal) glob.c update to set gl_pathv to NULL (OpenBSD CVS).
|
- (bal) glob.c update to set gl_pathv to NULL (OpenBSD CVS).
|
||||||
|
- (bal) Oops. Missed globc.h change (OpenBSD CVS).
|
||||||
|
|
||||||
20010319
|
20010319
|
||||||
- (djm) Seed PRNG at startup, rather than waiting for arc4random calls to
|
- (djm) Seed PRNG at startup, rather than waiting for arc4random calls to
|
||||||
|
@ -4631,4 +4632,4 @@
|
||||||
- Wrote replacements for strlcpy and mkdtemp
|
- Wrote replacements for strlcpy and mkdtemp
|
||||||
- Released 1.0pre1
|
- Released 1.0pre1
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.987 2001/03/19 19:00:09 mouring Exp $
|
$Id: ChangeLog,v 1.988 2001/03/19 21:29:30 mouring Exp $
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
/* $OpenBSD: glob.h,v 1.4 1998/01/31 17:06:26 millert Exp $ */
|
/* $OpenBSD: glob.h,v 1.5 2001/03/18 17:18:58 deraadt Exp $ */
|
||||||
/* $NetBSD: glob.h,v 1.5 1994/10/26 00:55:56 cgd Exp $ */
|
/* $NetBSD: glob.h,v 1.5 1994/10/26 00:55:56 cgd Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -82,6 +82,7 @@ typedef struct {
|
||||||
#define GLOB_QUOTE 0x0400 /* Quote special chars with \. */
|
#define GLOB_QUOTE 0x0400 /* Quote special chars with \. */
|
||||||
#define GLOB_TILDE 0x0800 /* Expand tilde names from the passwd file. */
|
#define GLOB_TILDE 0x0800 /* Expand tilde names from the passwd file. */
|
||||||
#define GLOB_NOESCAPE 0x1000 /* Disable backslash escaping. */
|
#define GLOB_NOESCAPE 0x1000 /* Disable backslash escaping. */
|
||||||
|
#define GLOB_LIMIT 0x2000 /* Limit pattern match output to ARG_MAX */
|
||||||
|
|
||||||
/* Error values returned by glob(3) */
|
/* Error values returned by glob(3) */
|
||||||
#define GLOB_NOSPACE (-1) /* Malloc call failed. */
|
#define GLOB_NOSPACE (-1) /* Malloc call failed. */
|
||||||
|
|
Loading…
Reference in New Issue