I'm very pleased to announce the release of our new website and documentation using the new toolchain with Hugo and AsciiDoctor. To get more information about the new toolchain please read the FreeBSD Documentation Project Primer[1], Hugo docs[2] and AsciiDoctor docs[3]. Acknowledgment: Benedict Reuschling <bcr@> Glen Barber <gjb@> Hiroki Sato <hrs@> Li-Wen Hsu <lwhsu@> Sean Chittenden <seanc@> The FreeBSD Foundation [1] https://docs.FreeBSD.org/en/books/fdp-primer/ [2] https://gohugo.io/documentation/ [3] https://docs.asciidoctor.org/home/ Approved by: doceng, core
21 lines
544 B
Diff
21 lines
544 B
Diff
Index: contrib/tar/src/misc.c
|
|
===================================================================
|
|
RCS file: /home/ncvs/src/contrib/tar/src/Attic/misc.c,v
|
|
retrieving revision 1.3
|
|
diff -u -u -r1.3 misc.c
|
|
--- contrib/tar/src/misc.c 19 Oct 2002 09:32:03 -0000 1.3
|
|
+++ contrib/tar/src/misc.c 8 Oct 2007 11:59:55 -0000
|
|
@@ -210,12 +210,11 @@
|
|
if (p[0] == '.' && p[1] == '.' && (ISSLASH (p[2]) || !p[2]))
|
|
return 1;
|
|
|
|
- do
|
|
+ while (! ISSLASH (*p))
|
|
{
|
|
if (! *p++)
|
|
return 0;
|
|
}
|
|
- while (! ISSLASH (*p));
|
|
|
|
do
|
|
{
|