From 1bc21e7a70eb9f1f69c179bb251e612c7aecd655 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Tue, 28 Jul 1998 20:47:08 +0000 Subject: Update. * resolv/nss_dns/dns-host.c (getanswer_r): Lower the priority of warnings when DNSSEC related records are received. * resolv/gethnamaddr.c (getanswer): Likewise. Patch by Brian Wellington . * signal/signal.h: Add prototype for sysv_signal. * math/libm-test.c (tgamma_test): Remove redundant tests. * posix/glob.h: Add GLOB_TILDE_CHECK. * sysdeps/generic/glob.c: Implement GLOB_TILDE_CHECK. * posix/globtest.c: Add option T to enable GLOB_TILDE_CHECK. * posix/globtest.sh: Re-enable test with ~ and non-existing user name. --- posix/globtest.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'posix/globtest.c') diff --git a/posix/globtest.c b/posix/globtest.c index 37b1fd0..970d90a 100644 --- a/posix/globtest.c +++ b/posix/globtest.c @@ -29,7 +29,7 @@ main (int argc, char *argv[]) glob_t g; int quotes = 1; - while ((i = getopt (argc, argv, "bcdegmopqst")) != -1) + while ((i = getopt (argc, argv, "bcdegmopqstT")) != -1) switch(i) { case 'b': @@ -66,6 +66,9 @@ main (int argc, char *argv[]) case 't': glob_flags |= GLOB_TILDE; break; + case 'T': + glob_flags |= GLOB_TILDE_CHECK; + break; default: exit (-1); } -- cgit v1.1