| Summary: | Adding -{min,max}depth options to find(1) | ||||||||
|---|---|---|---|---|---|---|---|---|---|
| Product: | Base System | Reporter: | Ben Smithurst <ben> | ||||||
| Component: | bin | Assignee: | Ollivier Robert <roberto> | ||||||
| Status: | Closed FIXED | ||||||||
| Severity: | Affects Only Me | ||||||||
| Priority: | Normal | ||||||||
| Version: | 4.0-STABLE | ||||||||
| Hardware: | Any | ||||||||
| OS: | Any | ||||||||
| Attachments: |
|
||||||||
|
Description
Ben Smithurst
2000-06-01 13:50:06 UTC
On Thu, Jun 01, 2000 at 01:25:54PM +0100, Ben Smithurst wrote: > > @@ -35,7 +35,9 @@ > */ > > #ifndef lint > -static char sccsid[] = "@(#)find.c 8.5 (Berkeley) 8/5/94"; > +static const char sccsid[] = "@(#)find.c 8.5 (Berkeley) 8/5/94"; > +static const char rcsid[] = > + "$FreeBSD$"; > #endif /* not lint */ all of these deltas like this should look something like: #if 0 static char sccsid[] = "blah.."; #else static const char rcsid[] = "$FreeBSD$"; #endif or something similar. </minibde> -- Bill Fumerola - Network Architect / Computer Horizons Corp - CVM e-mail: billf@chc-chimes.com / billf@FreeBSD.org Bill Fumerola wrote: > all of these deltas like this should look something like: > > #if 0 > static char sccsid[] = "blah.."; > #else > static const char rcsid[] = > "$FreeBSD$"; > #endif ok. Should the #ifndef lint around it all stay? -- Ben Smithurst / ben@scientia.demon.co.uk / PGP: 0x99392F7D On Thu, Jun 01, 2000 at 05:33:03PM +0100, Ben Smithurst wrote: > > #if 0 > > static char sccsid[] = "blah.."; > > #else > > static const char rcsid[] = > > "$FreeBSD$"; > > #endif > > ok. Should the #ifndef lint around it all stay? yes -- Bill Fumerola - Network Architect / Computer Horizons Corp - CVM e-mail: billf@chc-chimes.com / billf@FreeBSD.org Bill Fumerola wrote: > On Thu, Jun 01, 2000 at 05:33:03PM +0100, Ben Smithurst wrote: > >> ok. Should the #ifndef lint around it all stay? > > yes ok, here's an updated diff. -- Ben Smithurst / ben@scientia.demon.co.uk / PGP: 0x99392F7D Responsible Changed From-To: freebsd-bugs->roberto Ollivier has kindly agreed to look over find(1) related PR's. State Changed From-To: open->closed Patch applied after tabs unmangling. Thanks! |