From owner-cvs-lib Sun Jun 1 02:21:23 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id CAA15229 for cvs-lib-outgoing; Sun, 1 Jun 1997 02:21:23 -0700 (PDT) Received: from freefall.freebsd.org (freefall.cdrom.com [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id CAA15174; Sun, 1 Jun 1997 02:20:59 -0700 (PDT) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id CAA02000; Sun, 1 Jun 1997 02:20:30 -0700 (PDT) Date: Sun, 1 Jun 1997 02:20:30 -0700 (PDT) Message-Id: <199706010920.CAA02000@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: cvs commit: src/lib/libc/sys Makefile.inc Sender: owner-cvs-lib@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk peter 1997/06/01 02:20:30 PDT Modified files: lib/libc/sys Makefile.inc Log: Generate signanosleep(2) syscall wrapper Revision Changes Path 1.33 +3 -2 src/lib/libc/sys/Makefile.inc From owner-cvs-lib Sun Jun 1 02:27:44 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id CAA15412 for cvs-lib-outgoing; Sun, 1 Jun 1997 02:27:44 -0700 (PDT) Received: from freefall.freebsd.org (freefall.cdrom.com [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id CAA15388; Sun, 1 Jun 1997 02:27:32 -0700 (PDT) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id CAA02041; Sun, 1 Jun 1997 02:27:04 -0700 (PDT) Date: Sun, 1 Jun 1997 02:27:04 -0700 (PDT) Message-Id: <199706010927.CAA02041@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: cvs commit: src/lib/libc/gen sleep.c usleep.c Sender: owner-cvs-lib@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk peter 1997/06/01 02:27:03 PDT Modified files: lib/libc/gen sleep.c usleep.c Log: Update the sleep(3)/usleep(3) code to use signanosleep(2) if compiled with -DUSE_NANOSLEEP. Also, seperate the code for _THREAD_SAFE so that it uses the simpler threaded nanosleep() call in libc_r.. We don't go to the same extremes for emulating traditional sleep semantics (ie: eating any SIGALRM that might happen) which things like apache seem to depend on. Revision Changes Path 1.10 +59 -9 src/lib/libc/gen/sleep.c 1.9 +58 -8 src/lib/libc/gen/usleep.c From owner-cvs-lib Sun Jun 1 02:47:50 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id CAA16183 for cvs-lib-outgoing; Sun, 1 Jun 1997 02:47:50 -0700 (PDT) Received: from freefall.freebsd.org (freefall.cdrom.com [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id CAA16146; Sun, 1 Jun 1997 02:47:35 -0700 (PDT) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id CAA02108; Sun, 1 Jun 1997 02:47:06 -0700 (PDT) Date: Sun, 1 Jun 1997 02:47:06 -0700 (PDT) Message-Id: <199706010947.CAA02108@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: cvs commit: src/lib/libc/sys nanosleep.2 Makefile.inc Sender: owner-cvs-lib@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk peter 1997/06/01 02:47:06 PDT Modified files: lib/libc/sys nanosleep.2 Makefile.inc Log: Doc signanosleep, add to links Revision Changes Path 1.2 +26 -3 src/lib/libc/sys/nanosleep.2 1.34 +2 -1 src/lib/libc/sys/Makefile.inc From owner-cvs-lib Sun Jun 1 03:35:33 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id DAA17640 for cvs-lib-outgoing; Sun, 1 Jun 1997 03:35:33 -0700 (PDT) Received: from freefall.freebsd.org (freefall.cdrom.com [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id DAA17608; Sun, 1 Jun 1997 03:35:08 -0700 (PDT) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id DAA02482; Sun, 1 Jun 1997 03:34:40 -0700 (PDT) Date: Sun, 1 Jun 1997 03:34:40 -0700 (PDT) Message-Id: <199706011034.DAA02482@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: cvs commit: src/lib/libc/sys sigsuspend.2 Sender: owner-cvs-lib@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk peter 1997/06/01 03:34:39 PDT Modified files: lib/libc/sys sigsuspend.2 Log: Add xref to signanosleep(2) Revision Changes Path 1.6 +1 -0 src/lib/libc/sys/sigsuspend.2 From owner-cvs-lib Sun Jun 1 23:27:23 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id XAA00367 for cvs-lib-outgoing; Sun, 1 Jun 1997 23:27:23 -0700 (PDT) Received: from freefall.freebsd.org (freefall.cdrom.com [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id XAA00264; Sun, 1 Jun 1997 23:25:30 -0700 (PDT) From: Julian Elischer Received: (from julian@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id XAA07545; Sun, 1 Jun 1997 23:24:55 -0700 (PDT) Date: Sun, 1 Jun 1997 23:24:55 -0700 (PDT) Message-Id: <199706020624.XAA07545@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-bin@FreeBSD.ORG, cvs-lib@FreeBSD.ORG, cvs-sys@FreeBSD.ORG, cvs-usrbin@FreeBSD.ORG Subject: cvs commit: src/bin/ls stat_flags.c src/lib/libc/sys chflags.2 src/sys/sys stat.h src/sys/ufs/ufs ufs_vnops.c src/usr.bin/chflags chflags.1 Sender: owner-cvs-lib@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk julian 1997/06/01 23:24:53 PDT Modified files: bin/ls stat_flags.c lib/libc/sys chflags.2 sys/sys stat.h sys/ufs/ufs ufs_vnops.c usr.bin/chflags chflags.1 Log: Submitted by: Whistle Communications (archie Cobbs) These changes add the ability to specify that a UFS file/directory cannot be unlinked. This is basically a scaled back version of the IMMUTABLE flag. The reason is to allow an administrator to create a directory hierarchy that a group of users can arbitrarily add/delete files from, but that the hierarchy itself is safe from removal by them. If the NOUNLINK definition is set to 0 then this results in no change to what happens normally. (and results in identical binary (in the kernel)). It can be proven that if this bit is never set by the admin, no new behaviour is introduced.. Several "good idea" comments from reviewers plus one grumble about creeping featurism. This code is in production in 2.2 based systems Revision Changes Path 1.6 +9 -1 src/bin/ls/stat_flags.c 1.7 +10 -2 src/lib/libc/sys/chflags.2 1.13 +4 -1 src/sys/sys/stat.h 1.51 +11 -7 src/sys/ufs/ufs/ufs_vnops.c 1.5 +4 -1 src/usr.bin/chflags/chflags.1 From owner-cvs-lib Mon Jun 2 04:41:12 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id EAA14563 for cvs-lib-outgoing; Mon, 2 Jun 1997 04:41:12 -0700 (PDT) Received: from freefall.freebsd.org (freefall.cdrom.com [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id EAA14535; Mon, 2 Jun 1997 04:40:46 -0700 (PDT) From: Thomas Gellekum Received: (from tg@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id EAA10589; Mon, 2 Jun 1997 04:40:09 -0700 (PDT) Date: Mon, 2 Jun 1997 04:40:09 -0700 (PDT) Message-Id: <199706021140.EAA10589@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: cvs commit: src/lib/libc/gen ttyname.c src/lib/libc/stdtime localtime.c Sender: owner-cvs-lib@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk tg 1997/06/02 04:40:08 PDT Modified files: (Branch: RELENG_2_2) lib/libc/gen ttyname.c lib/libc/stdtime localtime.c Log: MFC: pthread_keycreate() -> pthread_key_create() Revision Changes Path 1.5.2.1 +1 -1 src/lib/libc/gen/ttyname.c 1.10.2.4 +2 -2 src/lib/libc/stdtime/localtime.c From owner-cvs-lib Mon Jun 2 09:32:53 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id JAA27126 for cvs-lib-outgoing; Mon, 2 Jun 1997 09:32:53 -0700 (PDT) Received: from freefall.freebsd.org (freefall.cdrom.com [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id JAA26976; Mon, 2 Jun 1997 09:31:01 -0700 (PDT) From: Peter Wemm Received: (from peter@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id JAA12078; Mon, 2 Jun 1997 09:30:23 -0700 (PDT) Date: Mon, 2 Jun 1997 09:30:23 -0700 (PDT) Message-Id: <199706021630.JAA12078@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: cvs commit: src/lib/libc/gen sleep.c usleep.c Sender: owner-cvs-lib@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk peter 1997/06/02 09:30:22 PDT Modified files: lib/libc/gen sleep.c usleep.c Log: Re-activate the nanosleep style using code, but with the signal handling semantics of the old sleep for compatability with a few decades of expected side effects. Apache breaks if we just use nanosleep() for some reason, here we use a new signanosleep() syscall which is kinda like a hybrid of sigsuspend and nanosleep.. Reviewed by: ache (and tested on his apache that was failing when sleep used plain nanosleep) Revision Changes Path 1.11 +1 -53 src/lib/libc/gen/sleep.c 1.10 +1 -57 src/lib/libc/gen/usleep.c From owner-cvs-lib Wed Jun 4 05:56:44 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id FAA26471 for cvs-lib-outgoing; Wed, 4 Jun 1997 05:56:44 -0700 (PDT) Received: from freefall.freebsd.org (freefall.cdrom.com [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id FAA26368; Wed, 4 Jun 1997 05:55:53 -0700 (PDT) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id FAA05760; Wed, 4 Jun 1997 05:55:51 -0700 (PDT) Date: Wed, 4 Jun 1997 05:55:51 -0700 (PDT) Message-Id: <199706041255.FAA05760@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: cvs commit: src/lib/libc/stdlib malloc.c Sender: owner-cvs-lib@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk jb 1997/06/04 05:55:50 PDT Modified files: lib/libc/stdlib malloc.c Log: Fix mutex initialization. Malloc cannot use pthread_mutex_init() to initialize a mutex because the mutex initialization process does a malloc! libc_r internals skip the malloc and assign an initializer to a static structure and point the opaque type (pthread_mutex_t in this case) to that structure. This is done on the assumption that the mutex will never be destroyed. This style of initialization is only valid inside libc_r because the structure that is assigned is opaque to the user. This fix allows a simple program to get to main() again. 8-) Revision Changes Path 1.24 +4 -6 src/lib/libc/stdlib/malloc.c From owner-cvs-lib Wed Jun 4 06:03:45 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id GAA26781 for cvs-lib-outgoing; Wed, 4 Jun 1997 06:03:45 -0700 (PDT) Received: from freefall.freebsd.org (freefall.cdrom.com [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id GAA26749; Wed, 4 Jun 1997 06:03:15 -0700 (PDT) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id GAA05807; Wed, 4 Jun 1997 06:03:13 -0700 (PDT) Date: Wed, 4 Jun 1997 06:03:13 -0700 (PDT) Message-Id: <199706041303.GAA05807@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: cvs commit: src/lib/libc_r/uthread uthread_nanosleep.c Sender: owner-cvs-lib@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk jb 1997/06/04 06:03:13 PDT Modified files: lib/libc_r/uthread uthread_nanosleep.c Log: Bring back nanosleep from the cold. The addition of the nanosleep syscall was correctly added to libc/sys/Makefile so that it is renamed as _thread_sys_nanosleep(). This syscall is one of those that libc_r has to re-implement because the only behaviour is to block the process. So libc_r just ignores the fact that a nanosleep syscall exists and goes its own way - as it has done all along .... and now it does again. And now a simple program can sleep again. Phew. Revision Changes Path 1.5 +1 -1 src/lib/libc_r/uthread/uthread_nanosleep.c From owner-cvs-lib Thu Jun 5 19:19:09 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id TAA21168 for cvs-lib-outgoing; Thu, 5 Jun 1997 19:19:09 -0700 (PDT) Received: from freefall.freebsd.org (freefall.cdrom.com [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id TAA21143; Thu, 5 Jun 1997 19:18:58 -0700 (PDT) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id TAA14788; Thu, 5 Jun 1997 19:18:42 -0700 (PDT) Date: Thu, 5 Jun 1997 19:18:42 -0700 (PDT) Message-Id: <199706060218.TAA14788@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: cvs commit: src/lib/csu/i386 Makefile crt0.c dlopen.3 Sender: owner-cvs-lib@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk brian 1997/06/05 19:18:42 PDT Modified files: (Branch: RELENG_2_2) lib/csu/i386 Makefile crt0.c dlopen.3 Log: Bring in the dl*() stubs to crt0.o from current so that the likes of boot_crunch can be built again. This fixes "make release". Revision Changes Path 1.25.2.3 +2 -4 src/lib/csu/i386/Makefile 1.25.2.2 +43 -1 src/lib/csu/i386/crt0.c 1.1.6.1 +152 -136 src/lib/csu/i386/dlopen.3 From owner-cvs-lib Fri Jun 6 14:50:05 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id OAA14521 for cvs-lib-outgoing; Fri, 6 Jun 1997 14:50:05 -0700 (PDT) Received: from freefall.freebsd.org (freefall.cdrom.com [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id OAA14441; Fri, 6 Jun 1997 14:49:17 -0700 (PDT) From: "Andrey A. Chernov" Received: (from ache@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id OAA19714; Fri, 6 Jun 1997 14:48:55 -0700 (PDT) Date: Fri, 6 Jun 1997 14:48:55 -0700 (PDT) Message-Id: <199706062148.OAA19714@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: cvs commit: src/lib/libc/gen fnmatch.c Sender: owner-cvs-lib@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk ache 1997/06/06 14:48:55 PDT Modified files: lib/libc/gen fnmatch.c Log: 1) Now conforms POSIX.2 2.8.3.2 requirements about []] pattern 2) Treat unclosed [ range in pattern as regular characters (bash style) Revision Changes Path 1.12 +35 -11 src/lib/libc/gen/fnmatch.c From owner-cvs-lib Fri Jun 6 14:55:22 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id OAA14771 for cvs-lib-outgoing; Fri, 6 Jun 1997 14:55:22 -0700 (PDT) Received: from freefall.freebsd.org (freefall.cdrom.com [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id OAA14738; Fri, 6 Jun 1997 14:55:07 -0700 (PDT) From: "Andrey A. Chernov" Received: (from ache@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id OAA19754; Fri, 6 Jun 1997 14:54:45 -0700 (PDT) Date: Fri, 6 Jun 1997 14:54:45 -0700 (PDT) Message-Id: <199706062154.OAA19754@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: cvs commit: src/lib/libc/gen fnmatch.c Sender: owner-cvs-lib@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk ache 1997/06/06 14:54:45 PDT Modified files: (Branch: RELENG_2_2) lib/libc/gen fnmatch.c Log: Merge POSIX, bash style, collate optimization fixes from -current Revision Changes Path 1.8.2.2 +38 -12 src/lib/libc/gen/fnmatch.c From owner-cvs-lib Fri Jun 6 15:34:39 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id PAA16300 for cvs-lib-outgoing; Fri, 6 Jun 1997 15:34:39 -0700 (PDT) Received: from freefall.freebsd.org (freefall.cdrom.com [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id PAA16201; Fri, 6 Jun 1997 15:33:51 -0700 (PDT) From: "Andrey A. Chernov" Received: (from ache@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id PAA19840; Fri, 6 Jun 1997 15:33:29 -0700 (PDT) Date: Fri, 6 Jun 1997 15:33:29 -0700 (PDT) Message-Id: <199706062233.PAA19840@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: cvs commit: src/lib/libc/gen fnmatch.c Sender: owner-cvs-lib@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk ache 1997/06/06 15:33:29 PDT Modified files: lib/libc/gen fnmatch.c Log: Add missing FNM_PERIOD check for '[' range Don't treat !^ as first characters in the range, just as negate sign [/] never match if FNM_PATHNAME Revision Changes Path 1.13 +10 -4 src/lib/libc/gen/fnmatch.c From owner-cvs-lib Fri Jun 6 15:37:05 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id PAA16483 for cvs-lib-outgoing; Fri, 6 Jun 1997 15:37:05 -0700 (PDT) Received: from freefall.freebsd.org (freefall.cdrom.com [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id PAA16461; Fri, 6 Jun 1997 15:36:48 -0700 (PDT) From: "Andrey A. Chernov" Received: (from ache@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id PAA19876; Fri, 6 Jun 1997 15:36:26 -0700 (PDT) Date: Fri, 6 Jun 1997 15:36:26 -0700 (PDT) Message-Id: <199706062236.PAA19876@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: cvs commit: src/lib/libc/gen fnmatch.c Sender: owner-cvs-lib@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk ache 1997/06/06 15:36:26 PDT Modified files: (Branch: RELENG_2_2) lib/libc/gen fnmatch.c Log: Merge -current fixes: missing FNM_PERIOD for '[' range, !^ as negate signs, [/] never match FNM_PATHNAME Revision Changes Path 1.8.2.3 +10 -4 src/lib/libc/gen/fnmatch.c From owner-cvs-lib Fri Jun 6 18:35:14 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id SAA23186 for cvs-lib-outgoing; Fri, 6 Jun 1997 18:35:14 -0700 (PDT) Received: from freefall.freebsd.org (freefall.cdrom.com [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id SAA23137; Fri, 6 Jun 1997 18:33:33 -0700 (PDT) From: "Andrey A. Chernov" Received: (from ache@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id SAA21101; Fri, 6 Jun 1997 18:33:10 -0700 (PDT) Date: Fri, 6 Jun 1997 18:33:10 -0700 (PDT) Message-Id: <199706070133.SAA21101@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: cvs commit: src/lib/libc/gen fnmatch.c Sender: owner-cvs-lib@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk ache 1997/06/06 18:33:10 PDT Modified files: lib/libc/gen fnmatch.c Log: Style optimization in newly added POSIX range []] conformance, redo 'for' loop as do...while and remove variable unneded now Revision Changes Path 1.14 +6 -6 src/lib/libc/gen/fnmatch.c From owner-cvs-lib Fri Jun 6 18:37:20 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id SAA23246 for cvs-lib-outgoing; Fri, 6 Jun 1997 18:37:20 -0700 (PDT) Received: from freefall.freebsd.org (freefall.cdrom.com [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id SAA23195; Fri, 6 Jun 1997 18:35:39 -0700 (PDT) From: "Andrey A. Chernov" Received: (from ache@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id SAA21141; Fri, 6 Jun 1997 18:35:16 -0700 (PDT) Date: Fri, 6 Jun 1997 18:35:16 -0700 (PDT) Message-Id: <199706070135.SAA21141@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-lib@FreeBSD.ORG Subject: cvs commit: src/lib/libc/gen fnmatch.c Sender: owner-cvs-lib@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk ache 1997/06/06 18:35:16 PDT Modified files: (Branch: RELENG_2_2) lib/libc/gen fnmatch.c Log: Merge style optimization from -current Revision Changes Path 1.8.2.4 +6 -6 src/lib/libc/gen/fnmatch.c