#
a10c6f55 |
| 11-Nov-2012 |
Neel Natu <neel@FreeBSD.org> |
IFC @ r242684
|
#
23090366 |
| 04-Nov-2012 |
Simon J. Gerraty <sjg@FreeBSD.org> |
Sync from head
|
#
ae824d80 |
| 19-Oct-2012 |
Ed Schouten <ed@FreeBSD.org> |
Fix warnings found by -Wmising-variable-declarations.
This self-written compiler warning, which is hopefully going to be committed into LLVM sources soon, warns about potentially missing `static' ke
Fix warnings found by -Wmising-variable-declarations.
This self-written compiler warning, which is hopefully going to be committed into LLVM sources soon, warns about potentially missing `static' keywords, similar to -Wmissing-prototypes.
- bin/pax: Move external declaration of chdname and s_mask into extern.h. - bin/setfacl: Move setfacl.c-specific stuff out of setfacl.h. - sbin/mount_fusefs: Remove char *progname; use getprogname(). - others: add `static' where possible.
show more ...
|
Revision tags: release/8.3.0_cvs, release/8.3.0, release/9.0.0 |
|
#
87c3644c |
| 24-May-2011 |
Peter Grehan <grehan@FreeBSD.org> |
IFC @ r222256
|
#
8c4431d0 |
| 22-May-2011 |
Attilio Rao <attilio@FreeBSD.org> |
MFC
|
#
01c99176 |
| 22-May-2011 |
Ulrich Spörlein <uqs@FreeBSD.org> |
Fix a bunch of typos and a couple of whitespace nits.
Helped by: codespell and vim's spellchecker
|
Revision tags: release/7.4.0_cvs, release/8.2.0_cvs, release/7.4.0, release/8.2.0, release/8.1.0_cvs, release/8.1.0, release/7.3.0_cvs, release/7.3.0, release/8.0.0_cvs, release/8.0.0, release/7.2.0_cvs, release/7.2.0, release/7.1.0_cvs, release/7.1.0, release/6.4.0_cvs, release/6.4.0, release/7.0.0_cvs, release/7.0.0, release/6.3.0_cvs, release/6.3.0, release/6.2.0_cvs, release/6.2.0, release/5.5.0_cvs, release/5.5.0, release/6.1.0_cvs, release/6.1.0, release/6.0.0_cvs, release/6.0.0, release/5.4.0_cvs, release/5.4.0, release/4.11.0_cvs, release/4.11.0, release/5.3.0_cvs, release/5.3.0, release/4.10.0_cvs, release/4.10.0 |
|
#
6195fb41 |
| 06-Apr-2004 |
Mark Murray <markm@FreeBSD.org> |
Remove clause 3 from the UCB licenses.
OK'ed by: imp, core
|
#
16fc3635 |
| 05-Mar-2004 |
Mark Murray <markm@FreeBSD.org> |
Make NULL a (void*)0 whereever possible, and fix the warnings(-Werror) that this provokes. "Wherever possible" means "In the kernel OR NOT C++" (implying C).
There are places where (void *) pointers
Make NULL a (void*)0 whereever possible, and fix the warnings(-Werror) that this provokes. "Wherever possible" means "In the kernel OR NOT C++" (implying C).
There are places where (void *) pointers are not valid, such as for function pointers, but in the special case of (void *)0, agreement settles on it being OK.
Most of the fixes were NULL where an integer zero was needed; many of the fixes were NULL where ascii <nul> ('\0') was needed, and a few were just "other".
Tested on: i386 sparc64
show more ...
|
Revision tags: release/5.2.1_cvs, release/5.2.1, release/5.2.0_cvs, release/5.2.0, release/4.9.0_cvs, release/4.9.0, release/5.1.0_cvs, release/5.1.0 |
|
#
40feca3a |
| 03-May-2003 |
Mark Murray <markm@FreeBSD.org> |
Fix a bazillion warnings. This makes almost the whole of src/bin/* WARNS=6, std=c99 clean.
Tested on: i386, alpha
|
#
cee22cbd |
| 02-May-2003 |
David E. O'Brien <obrien@FreeBSD.org> |
Fix signed/unsigned mix comparisons involving sizeof.
|
Revision tags: release/4.8.0_cvs, release/4.8.0, release/5.0.0_cvs, release/5.0.0 |
|
#
9d5abbdd |
| 01-Jan-2003 |
Jens Schweikhardt <schweikh@FreeBSD.org> |
Correct typos, mostly s/ a / an / where appropriate. Some whitespace cleanup, especially in troff files.
|
Revision tags: release/4.7.0_cvs |
|
#
b4bb70cc |
| 22-Aug-2002 |
Bruce Evans <bde@FreeBSD.org> |
Removed extra $FreeBSD$. Moved #if 0 for the vendor id to the correct place. Restored indent protection of copyright comment.
|
#
7d971bbf |
| 21-Aug-2002 |
Tom Rhodes <trhodes@FreeBSD.org> |
s/filesystem/file system/ as discussed on -developers
|
Revision tags: release/4.6.2_cvs, release/4.6.2, release/4.6.1, release/4.6.0_cvs |
|
#
2749b141 |
| 30-Jun-2002 |
David E. O'Brien <obrien@FreeBSD.org> |
Consistently use FBSDID
|
#
ebd43244 |
| 16-May-2002 |
Tom Rhodes <trhodes@FreeBSD.org> |
Consistancy check s/file system/filesystem/
Reviewed by: brian
|
#
c113db69 |
| 12-Apr-2002 |
Philippe Charnier <charnier@FreeBSD.org> |
Do not return(f_returning_void());. Spell FALLTHROUGH to make it lint()able.
|
Revision tags: release/4.5.0_cvs, release/4.4.0_cvs |
|
#
f789b261 |
| 02-Feb-2002 |
Warner Losh <imp@FreeBSD.org> |
Ooops, forgot to remove the registers here.
|
#
46251dde |
| 02-Feb-2002 |
Warner Losh <imp@FreeBSD.org> |
o __P has been reoved o Old-style K&R declarations have been converted to new C89 style o register has been removed o prototype for main() has been removed (gcc3 makes it an error) o int main(int arg
o __P has been reoved o Old-style K&R declarations have been converted to new C89 style o register has been removed o prototype for main() has been removed (gcc3 makes it an error) o int main(int argc, char *argv[]) is the preferred main definition. o Attempt to not break style(9) conformance for declarations more than they already are.
show more ...
|
#
b1787dec |
| 08-May-2001 |
Kris Kennaway <kris@FreeBSD.org> |
Sync up with OpenBSD. Too many changes to note, but the major features are: * Implement cpio compatibility mode when pax is invoked as cpio * Extend tar compatibility mode to cover many of the GNU t
Sync up with OpenBSD. Too many changes to note, but the major features are: * Implement cpio compatibility mode when pax is invoked as cpio * Extend tar compatibility mode to cover many of the GNU tar single-letter options (bzip2 mode, aka -y/-j is not present in OpenBSD). When invoked as tar, pax is now full-featured enough for use by the ports collection to extract distfiles and create packages. * Many bug fixes to the operation of pax and the tar compatibility modes * Code fixes for things like correct string buffer termination.
I tried to preserve existing FreeBSD fixes to this utility; please let me know if I have inadvertently spammed something.
show more ...
|
#
1192d531 |
| 05-May-2001 |
Kris Kennaway <kris@FreeBSD.org> |
Add -z flag to pax to allow gzipping of archive output. Add -z and -Z (gzip and compress) to pax when used in tar mode (invoked as 'tar') for compatibility with GNU tar.
bzip2 functionality for fur
Add -z flag to pax to allow gzipping of archive output. Add -z and -Z (gzip and compress) to pax when used in tar mode (invoked as 'tar') for compatibility with GNU tar.
bzip2 functionality for further GNU tar compatibility will be added at a later date.
Note in the manpage that -z is non-standard.
Obtained from: OpenBSD Reviewed by: -hackers MFC after: 2 weeks
show more ...
|
#
d12dd1a1 |
| 26-Apr-2001 |
Kris Kennaway <kris@FreeBSD.org> |
Whitespace cleanup pass; reduce diffs with OpenBSD. No functional changes.
|
#
778766fe |
| 26-Apr-2001 |
Kris Kennaway <kris@FreeBSD.org> |
Reduce diffs with OpenBSD: #if __STDC__ -> #ifdef __STDC__ pax_warn() -> paxwarn() sys_warn() -> syswarn() (foo *)NULL -> NULL bcopy -> memmove()/memcpy() bzero -> memset() Typo fixes
Reduce diffs with OpenBSD: #if __STDC__ -> #ifdef __STDC__ pax_warn() -> paxwarn() sys_warn() -> syswarn() (foo *)NULL -> NULL bcopy -> memmove()/memcpy() bzero -> memset() Typo fixes sprintf() -> snprintf() rindex() -> strrchr() index() -> strchr() sys_errlist[] -> strerror()
Obtained from: OpenBSD
show more ...
|
Revision tags: release/4.3.0_cvs, release/4.3.0 |
|
#
9a01d32b |
| 06-Feb-2001 |
Jeroen Ruigrok van der Werven <asmodai@FreeBSD.org> |
Fix typo: seperate -> separate.
Seperate does not exist in the english language.
Submitted to look at by: kris
|
Revision tags: release/4.2.0, release/4.1.1_cvs |
|
#
2c15efcf |
| 16-Aug-2000 |
Warner Losh <imp@FreeBSD.org> |
Don't explicitly declare optarg and optind. These are declared in unistd.h, which is already included.
|
Revision tags: release/4.1.0, release/3.5.0_cvs, release/4.0.0_cvs, release/3.4.0_cvs, release/3.3.0_cvs |
|
#
2a456239 |
| 28-Aug-1999 |
Peter Wemm <peter@FreeBSD.org> |
$Id$ -> $FreeBSD$
|