diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-09-01 18:40:51 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-09-01 18:40:51 +0000 |
commit | 80cc4c3f548f337fce6264beaf22ea9ad438c092 (patch) | |
tree | c4994814d6347a7fac0755cc948b210a6aaff6b9 /bin/csh | |
parent | 6956622c58038ef22e33d0756dc2fa155f8ccb45 (diff) |
GLOB_ABEND -> GLOB_ABORTED
Diffstat (limited to 'bin/csh')
-rw-r--r-- | bin/csh/glob.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/csh/glob.c b/bin/csh/glob.c index a0765957b19..ce729463bc4 100644 --- a/bin/csh/glob.c +++ b/bin/csh/glob.c @@ -1,4 +1,4 @@ -/* $OpenBSD: glob.c,v 1.4 1997/07/25 18:58:08 mickey Exp $ */ +/* $OpenBSD: glob.c,v 1.5 1997/09/01 18:40:50 millert Exp $ */ /* $NetBSD: glob.c,v 1.10 1995/03/21 09:03:01 cgd Exp $ */ /*- @@ -38,7 +38,7 @@ #if 0 static char sccsid[] = "@(#)glob.c 8.1 (Berkeley) 5/31/93"; #else -static char rcsid[] = "$OpenBSD: glob.c,v 1.4 1997/07/25 18:58:08 mickey Exp $"; +static char rcsid[] = "$OpenBSD: glob.c,v 1.5 1997/09/01 18:40:50 millert Exp $"; #endif #endif /* not lint */ @@ -410,7 +410,7 @@ libglob(vl) do { ptr = short2qstr(*vl); switch (glob(ptr, gflgs, 0, &globv)) { - case GLOB_ABEND: + case GLOB_ABORTED: setname(vis_str(*vl)); stderror(ERR_NAME | ERR_GLOB); /* NOTREACHED */ |