| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
| |
Remove /^[\s*]*__FBSDID\("\$FreeBSD\$"\);?\s*\n/
Similar commit in main:
(cherry picked from commit 1d386b48a555)
|
|
|
|
|
|
|
|
|
|
|
|
| |
This is mostly a style fix since the code in question is not called multiple
times and doesn't have cummulative effect.
PR: 204953
Submitted by: David Binderman <dcb314@hotmail.com>
MFC after: 1 week
Notes:
svn path=/head/; revision=343127
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Mainly focus on files that use BSD 3-Clause license.
The Software Package Data Exchange (SPDX) group provides a specification
to make it easier for automated tools to detect and summarize well known
opensource licenses. We are gradually adopting the specification, noting
that the tags are considered only advisory and do not, in any way,
superceed or replace the license texts.
Special thanks to Wind River for providing access to "The Duke of
Highlander" tool: an older (2014) run over FreeBSD tree was useful as a
starting point.
Notes:
svn path=/head/; revision=326025
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Per POSIX, allow passing multiple pathnames to uncompress -c, concatenating
the uncompressed data.
Passing multiple pathnames to compress -c remains disallowed, since the
result cannot be decompressed.
PR: 219387
Reported by: Jörg Schilling
Notes:
svn path=/head/; revision=318592
|
|
|
|
|
|
|
|
|
|
|
|
| |
Renumber cluase 4 to 3, per what everybody else did when BSD granted
them permission to remove clause 3. My insistance on keeping the same
numbering for legal reasons is too pedantic, so give up on that point.
Submitted by: Jan Schaumann <jschauma@stevens.edu>
Pull Request: https://github.com/freebsd/freebsd/pull/96
Notes:
svn path=/head/; revision=314436
|
|
|
|
| |
Notes:
svn path=/head/; revision=278896
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The index() and rindex() functions were marked LEGACY in the 2001
revision of POSIX and were subsequently removed from the 2008 revision.
The strchr() and strrchr() functions are part of the C standard.
This makes the source code a lot more consistent, as most of these C
files also call into other str*() routines. In fact, about a dozen
already perform strchr() calls.
Notes:
svn path=/head/; revision=229403
|
|
|
|
|
|
|
| |
This allows compilers and static analyzers to more thorough analysis.
Notes:
svn path=/head/; revision=227236
|
|
|
|
|
|
|
|
|
|
|
|
| |
is in accordance with the information provided at
ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change
Also add $FreeBSD$ to a few files to keep svn happy.
Discussed with: imp, rwatson
Notes:
svn path=/head/; revision=216370
|
|
|
|
|
|
|
| |
Also remove some local patches to diff(1) which are now unneeded.
Notes:
svn path=/head/; revision=205793
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
read at least 1 byte from the input file without problems. This
fixes a bug in uncompress(1) that causes the accidental removal
of files that happen to have the same name as the output file,
even when the uncompression fails and is aborted, i.e.:
$ echo hello world > hello
$ touch hello.Z
$ ls -l hello*
-rw-rw-r-- 1 giorgos giorgos 12 Jun 14 13:33 hello
-rw-rw-r-- 1 giorgos giorgos 0 Jun 14 13:33 hello.Z
$ ./uncompress -f hello
uncompress: hello.Z: Inappropriate file type or format
$ ls -l hello*
-rw-rw-r-- 1 giorgos giorgos 0 Jun 14 13:33 hello.Z
$
PR: 46787
Submitted by: keramida
Notes:
svn path=/head/; revision=116336
|
|
|
|
| |
Notes:
svn path=/head/; revision=100820
|
|
|
|
|
|
|
| |
to be compressed/decompressed to standard output.
Notes:
svn path=/head/; revision=96772
|
|
|
|
| |
Notes:
svn path=/head/; revision=96770
|
|
|
|
|
|
|
| |
its size would not be reduced (SUSv3).
Notes:
svn path=/head/; revision=96769
|
|
|
|
| |
Notes:
svn path=/head/; revision=93055
|
|
|
|
| |
Notes:
svn path=/head/; revision=92920
|
|
|
|
|
|
|
|
|
|
|
| |
of the recent WARNS commits. The idea is:
1) FreeBSD id tags should follow vendor tags.
2) Vendor tags should not be compiled (though copyrights probably should).
3) There should be no blank line between including cdefs and __FBSDIF.
Notes:
svn path=/head/; revision=87628
|
|
|
|
|
|
|
|
| |
Use a better choice than size_t for vertain variables.
Fix some comment alignment.
Notes:
svn path=/head/; revision=87247
|
|
|
|
| |
Notes:
svn path=/head/; revision=87214
|
|
|
|
|
|
|
| |
MFC after: 1 week
Notes:
svn path=/head/; revision=79305
|
|
|
|
|
|
|
| |
<time.h>).
Notes:
svn path=/head/; revision=66907
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
compress uses setfile() to make flags, ownership and mode of the output
the same as those of the original. However, if the filesystem holding the
output file doesn't support these operations, compress prints a warning.
This bites a bit with NFS directories, which always fail the chflags()
operation. If the file system doesn't support the operation, then the
flags data wasn't valid on the original file anyway, so the warning is
spurious.
Submitted by: bin/16981 (Peter Edwards <peter.edwards@ireland.com>)
Notes:
svn path=/head/; revision=60622
|
|
|
|
| |
Notes:
svn path=/head/; revision=58630
|
|
|
|
| |
Notes:
svn path=/head/; revision=41568
|
|
|
|
|
|
|
|
| |
earlier (with style bugs of course), so zcat was an alias for uncompress
instead of `uncompress -c'.
Notes:
svn path=/head/; revision=40547
|
|
|
|
|
|
|
|
|
| |
makes us more useful in a tight environment.
Submitted by: Wilfredo Sanchez <wsanchez@apple.com>
Notes:
svn path=/head/; revision=40534
|
|
|
|
|
|
|
| |
posix standard on the topic.
Notes:
svn path=/head/; revision=24360
|
|
|
|
|
|
|
| |
declaration from <stdio.h> to "zopen.h" left it undeclared here.
Notes:
svn path=/head/; revision=18053
|
|
|
|
| |
Notes:
svn path=/head/; revision=8874
|
|
Notes:
svn path=/cvs2svn/branches/CHRISTOS/; revision=1590
|