svn commit: r269487 - head/sbin/geom/class/part

2014-08-03 Thread Isabell Long
Author: issyl0 (doc committer)
Date: Sun Aug  3 21:54:22 2014
New Revision: 269487
URL: http://svnweb.freebsd.org/changeset/base/269487

Log:
  Add generic list, status, load and unload docs to gpart(8)
  
  - In the style of gmirror(8).
  
  PR:   docs/191534
  Reviewed by:  gavin

Modified:
  head/sbin/geom/class/part/gpart.8

Modified: head/sbin/geom/class/part/gpart.8
==
--- head/sbin/geom/class/part/gpart.8   Sun Aug  3 21:37:12 2014
(r269486)
+++ head/sbin/geom/class/part/gpart.8   Sun Aug  3 21:54:22 2014
(r269487)
@@ -24,7 +24,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd July 1, 2014
+.Dd August 3, 2014
 .Dt GPART 8
 .Os
 .Sh NAME
@@ -129,6 +129,14 @@
 .Op Fl f Ar flags
 .Ar geom
 .\"
+.Nm
+.Cm list
+.Nm
+.Cm status
+.Nm
+.Cm load
+.Nm
+.Cm unload
 .Sh DESCRIPTION
 The
 .Nm
@@ -467,6 +475,18 @@ See the section entitled
 below for a discussion
 about its use.
 .El
+.It Cm list
+See
+.Xr geom 8 .
+.It Cm status
+See
+.Xr geom 8 .
+.It Cm load
+See
+.Xr geom 8 .
+.It Cm unload
+See
+.Xr geom 8 .
 .El
 .Sh PARTITIONING SCHEMES
 Several partitioning schemes are supported by the
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"


svn commit: r243788 - stable/9/usr.sbin/wpa/wpa_supplicant

2012-12-02 Thread Isabell Long
Author: issyl0 (doc committer)
Date: Sun Dec  2 12:26:17 2012
New Revision: 243788
URL: http://svnweb.freebsd.org/changeset/base/243788

Log:
  MFC r242696 from HEAD:
Document all of the options that wpa_supplicant accepts.
  
  PR:   docs/171755
  Approved by:  gabor (mentor)

Modified:
  stable/9/usr.sbin/wpa/wpa_supplicant/wpa_supplicant.8
Directory Properties:
  stable/9/usr.sbin/wpa/wpa_supplicant/   (props changed)

Modified: stable/9/usr.sbin/wpa/wpa_supplicant/wpa_supplicant.8
==
--- stable/9/usr.sbin/wpa/wpa_supplicant/wpa_supplicant.8   Sun Dec  2 
06:50:27 2012(r243787)
+++ stable/9/usr.sbin/wpa/wpa_supplicant/wpa_supplicant.8   Sun Dec  2 
12:26:17 2012(r243788)
@@ -24,7 +24,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd March 24, 2008
+.Dd November 7, 2012
 .Dt WPA_SUPPLICANT 8
 .Os
 .Sh NAME
@@ -32,9 +32,26 @@
 .Nd "WPA/802.11i Supplicant for wireless network devices"
 .Sh SYNOPSIS
 .Nm
-.Op Fl BdehLqsvw
+.Op Fl BdhKLqstuvW
+.Op Fl b Ar br_ifname
+.Fl c Ar config-file
+.Op Fl C Ar ctrl
+.Op Fl D Ar driver
+.Op Fl f Ar debug file
+.Op Fl g Ar global ctrl
+.Fl i Ar ifname
+.Op Fl o Ar override driver
+.Op Fl O Ar override ctrl
+.Op Fl P Ar pid file
+.Oo Fl N
 .Fl i Ar ifname
 .Fl c Ar config-file
+.Op Fl C Ar ctrl
+.Op Fl D driver
+.Op Fl p Ar driver_param
+.Op Fl b Ar br_ifname
+.No ...
+.Oc
 .Sh DESCRIPTION
 The
 .Nm
@@ -87,15 +104,36 @@ utility, using
 .Sh OPTIONS
 The following options are available:
 .Bl -tag -width indent
+.It Fl b
+Optional bridge interface name.
+.It Fl B
+Detach from the controlling terminal and run as a daemon process
+in the background.
 .It Fl d
 Enable debugging messages.
 If this option is supplied twice, more verbose messages are displayed.
-.It Fl e
-Use an external IEEE 802.1X Supplicant program and disable the
-internal Supplicant.
-This option is not normally used.
+.It Fl D
+Driver name (can be multiple drivers: nl80211,wext).
+.It Fl f
+Log output to debug file instead of stdout.
+.It Fl g
+Global ctrl_interface.
 .It Fl h
 Show help text.
+.It Fl K
+Include key information in debugging output.
+.It Fl L
+Display the license for this program on the terminal and exit.
+.It Fl N
+Start describing a new interface.
+.It Fl o
+Overrides driver parameter for new interfaces.
+.It Fl O
+Override ctrl_interface parameter for new interfaces.
+.It Fl p
+Specify driver parameters.
+.It Fl P
+File in which to save the process PID.
 .It Fl q
 Decrease debugging verbosity (i.e., counteract the use of the
 .Fl d
@@ -104,23 +142,14 @@ flag).
 Send log messages through
 .Xr syslog 3
 instead of to the terminal.
+.It Fl t
+Include timestamp in debug messages.
+.It Fl u
+Enable DBus control interface.
 .It Fl v
 Display version information on the terminal and exit.
-.It Fl w
-If the specified interface is not present, wait for it to be
-added; e.g.\& a cardbus device to be inserted.
-This option is not normally used; instead,
-.Xr devd 8
-should be configured to launch
-.Nm
-when a device is created.
-.It Fl B
-Detach from the controlling terminal and run as a daemon process
-in the background.
-.It Fl K
-Include key information in debugging output.
-.It Fl L
-Display the license for this program on the terminal and exit.
+.It Fl W
+Wait for a control interface monitor before starting.
 .El
 .Sh SEE ALSO
 .Xr an 4 ,
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"


svn commit: r242696 - head/usr.sbin/wpa/wpa_supplicant

2012-11-07 Thread Isabell Long
Author: issyl0 (doc committer)
Date: Wed Nov  7 15:47:36 2012
New Revision: 242696
URL: http://svnweb.freebsd.org/changeset/base/242696

Log:
  Document all of the options that wpa_supplicant accepts.
  
  PR:   docs/171755
  Reviewed by:  gavin
  Approved by:  gabor (mentor)
  MFC after:5 days

Modified:
  head/usr.sbin/wpa/wpa_supplicant/wpa_supplicant.8

Modified: head/usr.sbin/wpa/wpa_supplicant/wpa_supplicant.8
==
--- head/usr.sbin/wpa/wpa_supplicant/wpa_supplicant.8   Wed Nov  7 08:13:56 
2012(r242695)
+++ head/usr.sbin/wpa/wpa_supplicant/wpa_supplicant.8   Wed Nov  7 15:47:36 
2012(r242696)
@@ -24,7 +24,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd March 24, 2008
+.Dd November 7, 2012
 .Dt WPA_SUPPLICANT 8
 .Os
 .Sh NAME
@@ -32,9 +32,26 @@
 .Nd "WPA/802.11i Supplicant for wireless network devices"
 .Sh SYNOPSIS
 .Nm
-.Op Fl BdehLqsvw
+.Op Fl BdhKLqstuvW
+.Op Fl b Ar br_ifname
+.Fl c Ar config-file
+.Op Fl C Ar ctrl
+.Op Fl D Ar driver
+.Op Fl f Ar debug file
+.Op Fl g Ar global ctrl
+.Fl i Ar ifname
+.Op Fl o Ar override driver
+.Op Fl O Ar override ctrl
+.Op Fl P Ar pid file
+.Oo Fl N
 .Fl i Ar ifname
 .Fl c Ar config-file
+.Op Fl C Ar ctrl
+.Op Fl D driver
+.Op Fl p Ar driver_param
+.Op Fl b Ar br_ifname
+.No ...
+.Oc
 .Sh DESCRIPTION
 The
 .Nm
@@ -87,15 +104,36 @@ utility, using
 .Sh OPTIONS
 The following options are available:
 .Bl -tag -width indent
+.It Fl b
+Optional bridge interface name.
+.It Fl B
+Detach from the controlling terminal and run as a daemon process
+in the background.
 .It Fl d
 Enable debugging messages.
 If this option is supplied twice, more verbose messages are displayed.
-.It Fl e
-Use an external IEEE 802.1X Supplicant program and disable the
-internal Supplicant.
-This option is not normally used.
+.It Fl D
+Driver name (can be multiple drivers: nl80211,wext).
+.It Fl f
+Log output to debug file instead of stdout.
+.It Fl g
+Global ctrl_interface.
 .It Fl h
 Show help text.
+.It Fl K
+Include key information in debugging output.
+.It Fl L
+Display the license for this program on the terminal and exit.
+.It Fl N
+Start describing a new interface.
+.It Fl o
+Overrides driver parameter for new interfaces.
+.It Fl O
+Override ctrl_interface parameter for new interfaces.
+.It Fl p
+Specify driver parameters.
+.It Fl P
+File in which to save the process PID.
 .It Fl q
 Decrease debugging verbosity (i.e., counteract the use of the
 .Fl d
@@ -104,23 +142,14 @@ flag).
 Send log messages through
 .Xr syslog 3
 instead of to the terminal.
+.It Fl t
+Include timestamp in debug messages.
+.It Fl u
+Enable DBus control interface.
 .It Fl v
 Display version information on the terminal and exit.
-.It Fl w
-If the specified interface is not present, wait for it to be
-added; e.g.\& a cardbus device to be inserted.
-This option is not normally used; instead,
-.Xr devd 8
-should be configured to launch
-.Nm
-when a device is created.
-.It Fl B
-Detach from the controlling terminal and run as a daemon process
-in the background.
-.It Fl K
-Include key information in debugging output.
-.It Fl L
-Display the license for this program on the terminal and exit.
+.It Fl W
+Wait for a control interface monitor before starting.
 .El
 .Sh SEE ALSO
 .Xr an 4 ,
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"


svn commit: r241106 - stable/9/usr.sbin/portsnap/portsnap

2012-10-01 Thread Isabell Long
Author: issyl0 (doc committer)
Date: Mon Oct  1 16:34:12 2012
New Revision: 241106
URL: http://svn.freebsd.org/changeset/base/241106

Log:
  MFC r241024 and r241026 from HEAD:
- Add a note to portsnap(8) about the behaviour of the example cron command.
- Change "only only" to "only" in portsnap(8).
  
  PR:   docs/171759
  Approved by:  gjb (mentor)

Modified:
  stable/9/usr.sbin/portsnap/portsnap/portsnap.8
Directory Properties:
  stable/9/usr.sbin/portsnap/   (props changed)

Modified: stable/9/usr.sbin/portsnap/portsnap/portsnap.8
==
--- stable/9/usr.sbin/portsnap/portsnap/portsnap.8  Mon Oct  1 15:50:18 
2012(r241105)
+++ stable/9/usr.sbin/portsnap/portsnap/portsnap.8  Mon Oct  1 16:34:12 
2012(r241106)
@@ -25,7 +25,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd September 15, 2008
+.Dd September 28, 2012
 .Dt PORTSNAP 8
 .Os FreeBSD
 .Sh NAME
@@ -174,6 +174,23 @@ can quickly be extracted into
 If your clock is set to UTC, please pick a random time other
 than 3AM, to avoid overly imposing an uneven load on the
 server(s) hosting the snapshots.
+.Pp
+Note that running
+.Nm
+.Cm cron
+or
+.Nm
+.Cm fetch
+does not apply the changes that were received: they only download
+them.
+To apply the changes, you must follow these commands with
+.Nm
+.Cm update .
+The
+.Nm
+.Cm update
+command is normally run by hand at a time when you are sure that
+no one is manually working in the ports tree.
 .It
 Running
 .Nm
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"


svn commit: r241072 - stable/9/sbin/ipf/ipf

2012-09-30 Thread Isabell Long
Author: issyl0 (doc committer)
Date: Sun Sep 30 15:33:53 2012
New Revision: 241072
URL: http://svn.freebsd.org/changeset/base/241072

Log:
  MFC r239775 from HEAD:
- Link ipfilter(4) and ipfilter(5) to the build to stop the wrong man
  page displaying for 'man 4 ipfilter'.
  
  PR:   docs/118020
  Approved by:  gabor (mentor)

Modified:
  stable/9/sbin/ipf/ipf/Makefile
Directory Properties:
  stable/9/sbin/ipf/   (props changed)

Modified: stable/9/sbin/ipf/ipf/Makefile
==
--- stable/9/sbin/ipf/ipf/Makefile  Sun Sep 30 13:32:48 2012
(r241071)
+++ stable/9/sbin/ipf/ipf/Makefile  Sun Sep 30 15:33:53 2012
(r241072)
@@ -2,8 +2,8 @@
 
 PROG=  ipf
 SRCS=  ${GENHDRS} ipf.c ipfcomp.c ipf_y.c ipf_l.c bpf_filter.c
-MAN=   ipf.8 ipf.4 ipf.5 ipl.4
-MLINKS=ipl.4 ipfilter.4 ipf.5 ipf.conf.5 ipf.5 ipf6.conf.5
+MAN=   ipfilter.4 ipfilter.5 ipf.8 ipf.4 ipf.5 ipl.4
+MLINKS=ipf.5 ipf.conf.5 ipf.5 ipf6.conf.5
 CFLAGS+=   -I. -DIPFILTER_BPF
 
 GENHDRS=   ipf_l.h ipf_y.h
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"


svn commit: r241026 - head/usr.sbin/portsnap/portsnap

2012-09-28 Thread Isabell Long
Author: issyl0 (doc committer)
Date: Fri Sep 28 11:40:59 2012
New Revision: 241026
URL: http://svn.freebsd.org/changeset/base/241026

Log:
  Change "only only" to "only" in portsnap(8).
  
  Spotted by:   Ruslan Mahmatkhanov
  Approved by:  gabor (mentor, implicit)

Modified:
  head/usr.sbin/portsnap/portsnap/portsnap.8

Modified: head/usr.sbin/portsnap/portsnap/portsnap.8
==
--- head/usr.sbin/portsnap/portsnap/portsnap.8  Fri Sep 28 11:25:02 2012
(r241025)
+++ head/usr.sbin/portsnap/portsnap/portsnap.8  Fri Sep 28 11:40:59 2012
(r241026)
@@ -187,7 +187,7 @@ Note that running
 or
 .Nm
 .Cm fetch
-does not apply the changes that were received: they only only download
+does not apply the changes that were received: they only download
 them.
 To apply the changes, you must follow these commands with
 .Nm
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"


svn commit: r241024 - head/usr.sbin/portsnap/portsnap

2012-09-28 Thread Isabell Long
Author: issyl0 (doc committer)
Date: Fri Sep 28 11:11:42 2012
New Revision: 241024
URL: http://svn.freebsd.org/changeset/base/241024

Log:
  Add a note to portsnap(8) about the behaviour of the example cron command.
  
  PR:   docs/171759
  Submitted by: Paul Hoffman (phoffman at proper dot com)
  Approved by:  cperciva, gabor (mentor)
  MFC after:3 days

Modified:
  head/usr.sbin/portsnap/portsnap/portsnap.8

Modified: head/usr.sbin/portsnap/portsnap/portsnap.8
==
--- head/usr.sbin/portsnap/portsnap/portsnap.8  Fri Sep 28 10:49:41 2012
(r241023)
+++ head/usr.sbin/portsnap/portsnap/portsnap.8  Fri Sep 28 11:11:42 2012
(r241024)
@@ -25,7 +25,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd August 5, 2012
+.Dd September 28, 2012
 .Dt PORTSNAP 8
 .Os FreeBSD
 .Sh NAME
@@ -180,6 +180,23 @@ can quickly be extracted into
 If your clock is set to UTC, please pick a random time other
 than 3AM, to avoid overly imposing an uneven load on the
 server(s) hosting the snapshots.
+.Pp
+Note that running
+.Nm
+.Cm cron
+or
+.Nm
+.Cm fetch
+does not apply the changes that were received: they only only download
+them.
+To apply the changes, you must follow these commands with
+.Nm
+.Cm update .
+The
+.Nm
+.Cm update
+command is normally run by hand at a time when you are sure that
+no one is manually working in the ports tree.
 .It
 Running
 .Nm
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"


svn commit: r240759 - stable/8/usr.sbin/adduser

2012-09-20 Thread Isabell Long
Author: issyl0 (doc committer)
Date: Thu Sep 20 17:39:07 2012
New Revision: 240759
URL: http://svn.freebsd.org/changeset/base/240759

Log:
  MFC r240530 from HEAD:
- Remove a reference to CVS and freefall from a user-facing man page.
  
  PR:   docs/171658
  Approved by:  gabor (mentor)

Modified:
  stable/8/usr.sbin/adduser/adduser.8
Directory Properties:
  stable/8/usr.sbin/adduser/   (props changed)

Modified: stable/8/usr.sbin/adduser/adduser.8
==
--- stable/8/usr.sbin/adduser/adduser.8 Thu Sep 20 17:30:26 2012
(r240758)
+++ stable/8/usr.sbin/adduser/adduser.8 Thu Sep 20 17:39:07 2012
(r240759)
@@ -26,7 +26,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd March 16, 2008
+.Dd September 15, 2012
 .Dt ADDUSER 8
 .Os
 .Sh NAME
@@ -129,9 +129,8 @@ they can safely run with a umask of 002 
 and create files in their home directory
 without worrying about others being able to change them.
 .Pp
-For a shared area you create a separate UID/GID (like cvs or ncvs on freefall),
-you place each person that should be able to access this area into that new
-group.
+For a shared area you create a separate UID/GID, you place each person
+that should be able to access this area into that new group.
 .Pp
 This model of UID/GID administration allows far greater flexibility than 
lumping
 users into groups and having to muck with the umask when working in a shared
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"


svn commit: r240755 - stable/9/usr.sbin/adduser

2012-09-20 Thread Isabell Long
Author: issyl0 (doc committer)
Date: Thu Sep 20 16:27:21 2012
New Revision: 240755
URL: http://svn.freebsd.org/changeset/base/240755

Log:
  MFC r240530 from HEAD:
- Remove a reference to CVS and freefall from a user-facing man page.
  
  PR:   docs/171658
  Approved by:  gabor (mentor)

Modified:
  stable/9/usr.sbin/adduser/adduser.8
Directory Properties:
  stable/9/usr.sbin/adduser/   (props changed)

Modified: stable/9/usr.sbin/adduser/adduser.8
==
--- stable/9/usr.sbin/adduser/adduser.8 Thu Sep 20 16:03:04 2012
(r240754)
+++ stable/9/usr.sbin/adduser/adduser.8 Thu Sep 20 16:27:21 2012
(r240755)
@@ -26,7 +26,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd March 16, 2008
+.Dd September 15, 2012
 .Dt ADDUSER 8
 .Os
 .Sh NAME
@@ -129,9 +129,8 @@ they can safely run with a umask of 002 
 and create files in their home directory
 without worrying about others being able to change them.
 .Pp
-For a shared area you create a separate UID/GID (like cvs or ncvs on freefall),
-you place each person that should be able to access this area into that new
-group.
+For a shared area you create a separate UID/GID, you place each person
+that should be able to access this area into that new group.
 .Pp
 This model of UID/GID administration allows far greater flexibility than 
lumping
 users into groups and having to muck with the umask when working in a shared
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"


svn commit: r240557 - stable/9/share/man/man4

2012-09-16 Thread Isabell Long
Author: issyl0 (doc committer)
Date: Sun Sep 16 10:40:17 2012
New Revision: 240557
URL: http://svn.freebsd.org/changeset/base/240557

Log:
  MFC r239840 from HEAD:
- Fix a dead link in sk(4).
  
  PR:   docs/146958
  Approved by:  gabor (mentor)

Modified:
  stable/9/share/man/man4/sk.4
Directory Properties:
  stable/9/share/man/man4/   (props changed)

Modified: stable/9/share/man/man4/sk.4
==
--- stable/9/share/man/man4/sk.4Sun Sep 16 09:01:40 2012
(r240556)
+++ stable/9/share/man/man4/sk.4Sun Sep 16 10:40:17 2012
(r240557)
@@ -30,7 +30,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd November 23, 2010
+.Dd August 29, 2012
 .Dt SK 4
 .Os
 .Sh NAME
@@ -223,7 +223,7 @@ the network connection (cable).
 .Xr ifconfig 8
 .Rs
 .%T XaQti XMAC II datasheet
-.%U http://www.xaqti.com
+.%U http://people.freebsd.org/~wpaul/SysKonnect/xmacii_datasheet_rev_c_9-29.pdf
 .Re
 .Rs
 .%T SysKonnect GEnesis programming manual
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"


svn commit: r240530 - head/usr.sbin/adduser

2012-09-15 Thread Isabell Long
Author: issyl0 (doc committer)
Date: Sat Sep 15 16:24:03 2012
New Revision: 240530
URL: http://svn.freebsd.org/changeset/base/240530

Log:
  Remove a reference to CVS and to freefall from a user-facing man page.
  
  PR:   docs/171658
  Reported by:  Chris Petrik (c dot petrik dot sosa at gmail dot com)
  Approved by:  gabor (mentor)
  MFC after:5 days

Modified:
  head/usr.sbin/adduser/adduser.8

Modified: head/usr.sbin/adduser/adduser.8
==
--- head/usr.sbin/adduser/adduser.8 Sat Sep 15 02:58:02 2012
(r240529)
+++ head/usr.sbin/adduser/adduser.8 Sat Sep 15 16:24:03 2012
(r240530)
@@ -26,7 +26,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd March 16, 2008
+.Dd September 15, 2012
 .Dt ADDUSER 8
 .Os
 .Sh NAME
@@ -129,9 +129,8 @@ they can safely run with a umask of 002 
 and create files in their home directory
 without worrying about others being able to change them.
 .Pp
-For a shared area you create a separate UID/GID (like cvs or ncvs on freefall),
-you place each person that should be able to access this area into that new
-group.
+For a shared area you create a separate UID/GID, you place each person
+that should be able to access this area into that new group.
 .Pp
 This model of UID/GID administration allows far greater flexibility than 
lumping
 users into groups and having to muck with the umask when working in a shared
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"


svn commit: r239840 - head/share/man/man4

2012-08-29 Thread Isabell Long
Author: issyl0 (doc committer)
Date: Wed Aug 29 15:34:31 2012
New Revision: 239840
URL: http://svn.freebsd.org/changeset/base/239840

Log:
  Fix a dead link in sk(4).
  
  PR:   docs/146958
  Approved by:  gjb (mentor)
  MFC after:3 days

Modified:
  head/share/man/man4/sk.4

Modified: head/share/man/man4/sk.4
==
--- head/share/man/man4/sk.4Wed Aug 29 15:34:26 2012(r239839)
+++ head/share/man/man4/sk.4Wed Aug 29 15:34:31 2012(r239840)
@@ -30,7 +30,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd November 23, 2010
+.Dd August 29, 2012
 .Dt SK 4
 .Os
 .Sh NAME
@@ -223,7 +223,7 @@ the network connection (cable).
 .Xr ifconfig 8
 .Rs
 .%T XaQti XMAC II datasheet
-.%U http://www.xaqti.com
+.%U http://people.freebsd.org/~wpaul/SysKonnect/xmacii_datasheet_rev_c_9-29.pdf
 .Re
 .Rs
 .%T SysKonnect GEnesis programming manual
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"


svn commit: r239834 - stable/9/sbin/geom/class/sched

2012-08-29 Thread Isabell Long
Author: issyl0 (doc committer)
Date: Wed Aug 29 14:06:58 2012
New Revision: 239834
URL: http://svn.freebsd.org/changeset/base/239834

Log:
  MFC r238813 from HEAD:
- The ad(4) driver no longer exists in FreeBSD CURRENT or 9, so change
  the references to it in gsched(8) to the existing ada(4) driver.
  
  PR:   docs/170085
  Approved by:  gjb (mentor)

Modified:
  stable/9/sbin/geom/class/sched/gsched.8
Directory Properties:
  stable/9/sbin/geom/class/sched/   (props changed)

Modified: stable/9/sbin/geom/class/sched/gsched.8
==
--- stable/9/sbin/geom/class/sched/gsched.8 Wed Aug 29 13:28:25 2012
(r239833)
+++ stable/9/sbin/geom/class/sched/gsched.8 Wed Aug 29 14:06:58 2012
(r239834)
@@ -25,7 +25,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd August 29, 2010
+.Dd July 26, 2012 
 .Dt GSCHED 8
 .Os
 .Sh NAME
@@ -135,19 +135,19 @@ maximum amount of debug information is p
 Exit status is 0 on success, and 1 if the command fails.
 .Sh EXAMPLES
 The following example shows how to create a scheduling provider for disk
-.Pa /dev/ad0 ,
+.Pa /dev/ada0 ,
 and how to destroy it.
 .Bd -literal -offset indent
 # Load the geom_sched module:
 kldload geom_sched
 # Load some scheduler classes used by geom_sched:
 kldload gsched_rr
-# Configure device ad0 to use scheduler "rr":
-geom sched insert -a rr ad0
-# Now provider ad0 uses the "rr" algorithm;
-# the new geom is ad0.sched.
+# Configure device ada0 to use scheduler "rr":
+geom sched insert -a rr ada0
+# Now provider ada0 uses the "rr" algorithm;
+# the new geom is ada0.sched.
 # Remove the scheduler on the device:
-geom sched destroy -v ad0.sched.
+geom sched destroy -v ada0.sched.
 .Ed
 .Pp
 .Sh SEE ALSO
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"


svn commit: r239833 - stable/9/lib/libc/locale

2012-08-29 Thread Isabell Long
@@ The
 .Fn isgraph
 function conforms to
 .St -isoC .
+The
+.Fn isgraph_l
+function conforms to
+.St -p1003.1-2008 .

Modified: stable/9/lib/libc/locale/islower.3
==
--- stable/9/lib/libc/locale/islower.3  Wed Aug 29 13:19:27 2012
(r239832)
+++ stable/9/lib/libc/locale/islower.3  Wed Aug 29 13:28:25 2012
(r239833)
@@ -32,7 +32,7 @@
 .\" @(#)islower.3  8.1 (Berkeley) 6/4/93
 .\" $FreeBSD$
 .\"
-.Dd July 17, 2005
+.Dd July 30, 2012
 .Dt ISLOWER 3
 .Os
 .Sh NAME
@@ -44,6 +44,8 @@
 .In ctype.h
 .Ft int
 .Fn islower "int c"
+.Ft int
+.Fn islower_l "int c" "locale_t loc"
 .Sh DESCRIPTION
 The
 .Fn islower
@@ -64,11 +66,18 @@ In the ASCII character set, this include
 .It "\&165\ ``u'' \t166\ ``v'' \t167\ ``w'' \t170\ ``x'' \t171\ ``y''"
 .It "\&172\ ``z''"
 .El
+The
+.Fn islower_l
+function takes an explicit locale argument, whereas the
+.Fn islower
+function uses the current global or per-thread locale. 
 .Sh RETURN VALUES
 The
 .Fn islower
-function returns zero if the character tests false and
-returns non-zero if the character tests true.
+and
+.Fn islower_l
+functions return zero if the character tests false and
+return non-zero if the character tests true.
 .Sh COMPATIBILITY
 The
 .Bx 4.4
@@ -89,3 +98,7 @@ The
 .Fn islower
 function conforms to
 .St -isoC .
+The
+.Fn islower_l
+function conforms to
+.St -p1003.1-2008 .

Modified: stable/9/lib/libc/locale/ispunct.3
==
--- stable/9/lib/libc/locale/ispunct.3  Wed Aug 29 13:19:27 2012
(r239832)
+++ stable/9/lib/libc/locale/ispunct.3  Wed Aug 29 13:28:25 2012
(r239833)
@@ -32,7 +32,7 @@
 .\"@(#)ispunct.3   8.1 (Berkeley) 6/4/93
 .\" $FreeBSD$
 .\"
-.Dd July 17, 2005
+.Dd July 30, 2012
 .Dt ISPUNCT 3
 .Os
 .Sh NAME
@@ -44,6 +44,8 @@
 .In ctype.h
 .Ft int
 .Fn ispunct "int c"
+.Ft int
+.Fn ispunct_l "int c" "locale_t loc"
 .Sh DESCRIPTION
 The
 .Fn ispunct
@@ -70,11 +72,19 @@ In the ASCII character set, this include
 .It "\&136\ ``^'' \t137\ ``_'' \t140\ ```'' \t173\ ``{'' \t174\ ``|''"
 .It "\&175\ ``}'' \t176\ ``~''"
 .El
+.Pp
+The
+.Fn ispunct_l
+function takes an explicit locale argument, whereas the
+.Fn ispunct
+function uses the current global or per-thread locale.
 .Sh RETURN VALUES
 The
 .Fn ispunct
-function returns zero if the character tests false and
-returns non-zero if the character tests true.
+and
+.Fn ispunct_l
+functions return zero if the character tests false and
+return non-zero if the character tests true.
 .Sh COMPATIBILITY
 The
 .Bx 4.4
@@ -94,3 +104,7 @@ The
 .Fn ispunct
 function conforms to
 .St -isoC .
+The
+.Fn ispunct_l
+function conforms to
+.St -p1003.1-2008 .

Modified: stable/9/lib/libc/locale/isspace.3
==
--- stable/9/lib/libc/locale/isspace.3  Wed Aug 29 13:19:27 2012
(r239832)
+++ stable/9/lib/libc/locale/isspace.3  Wed Aug 29 13:28:25 2012
(r239833)
@@ -32,7 +32,7 @@
 .\" @(#)isspace.3  8.1 (Berkeley) 6/4/93
 .\" $FreeBSD$
 .\"
-.Dd July 17, 2005
+.Dd July 30, 2012
 .Dt ISSPACE 3
 .Os
 .Sh NAME
@@ -44,6 +44,8 @@
 .In ctype.h
 .Ft int
 .Fn isspace "int c"
+.Ft int
+.Fn isspace_l "int c" "locale_t loc"
 .Sh DESCRIPTION
 The
 .Fn isspace
@@ -61,11 +63,19 @@ The value of the argument must be repres
 .Vt "unsigned char"
 or the value of
 .Dv EOF .
+.Pp
+The
+.Fn isspace_l
+function takes an explicit locale argument, whereas the
+.Fn isspace
+function uses the current global or per-thread locale.
 .Sh RETURN VALUES
 The
 .Fn isspace
-function returns zero if the character tests false and
-returns non-zero if the character tests true.
+and
+.Fn isspace_l
+functions return zero if the character tests false and
+return non-zero if the character tests true.
 .Sh COMPATIBILITY
 The
 .Bx 4.4
@@ -86,3 +96,7 @@ The
 .Fn isspace
 function conforms to
 .St -isoC .
+The
+.Fn isspace_l
+function conforms to
+.St -p1003.1-2008 .

Copied: stable/9/lib/libc/locale/iswalnum_l.3 (from r238781, 
head/lib/libc/locale/iswalnum_l.3)
==
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ stable/9/lib/libc/locale/iswalnum_l.3   Wed Aug 29 13:28:25 2012
(r239833, copy of r238781, head/lib/libc/locale/iswalnum_l.3)
@@ -0,0 +1,168 @@
+.\" Copyright (c) 2012 Isabell Long 
+.\" All rights reserved.
+.\"
+.\" Redistribution and use in source and binary forms, with or without
+.\" modification, are permitted provided that the following conditions
+.\" are met:
+.\" 1. Redistributio

svn commit: r239775 - head/sbin/ipf/ipf

2012-08-28 Thread Isabell Long
Author: issyl0 (doc committer)
Date: Tue Aug 28 12:33:54 2012
New Revision: 239775
URL: http://svn.freebsd.org/changeset/base/239775

Log:
  Link ipfilter(4) and ipfilter(5) to the build to stop the wrong man page
  displaying for 'man 4 ipfilter'.
  
  PR:   docs/118020
  Approved by:  gjb (mentor)
  MFC after:5 days

Modified:
  head/sbin/ipf/ipf/Makefile

Modified: head/sbin/ipf/ipf/Makefile
==
--- head/sbin/ipf/ipf/Makefile  Tue Aug 28 12:25:37 2012(r239774)
+++ head/sbin/ipf/ipf/Makefile  Tue Aug 28 12:33:54 2012(r239775)
@@ -2,8 +2,8 @@
 
 PROG=  ipf
 SRCS=  ${GENHDRS} ipf.c ipfcomp.c ipf_y.c ipf_l.c bpf_filter.c
-MAN=   ipf.8 ipf.4 ipf.5 ipl.4
-MLINKS=ipl.4 ipfilter.4 ipf.5 ipf.conf.5 ipf.5 ipf6.conf.5
+MAN=   ipfilter.4 ipfilter.5 ipf.8 ipf.4 ipf.5 ipl.4
+MLINKS=ipf.5 ipf.conf.5 ipf.5 ipf6.conf.5
 CFLAGS+=   -I. -DIPFILTER_BPF
 
 GENHDRS=   ipf_l.h ipf_y.h
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"


svn commit: r238919 - head/lib/libc/locale

2012-07-30 Thread Isabell Long
Author: issyl0 (doc committer)
Date: Mon Jul 30 20:56:19 2012
New Revision: 238919
URL: http://svn.freebsd.org/changeset/base/238919

Log:
  Add more locale-specific functions to the relevant man pages and Makefile:
- lib/libc/locale/islower.3
- lib/libc/locale/ispunct.3
- lib/libc/locale/nl_langinfo.3
- lib/libc/locale/isgraph.3
- lib/libc/locale/isspace.3
  
  Reviewed by:  bz
  Approved by:  theraven
  MFC after:5 days

Modified:
  head/lib/libc/locale/Makefile.inc
  head/lib/libc/locale/isgraph.3
  head/lib/libc/locale/islower.3
  head/lib/libc/locale/ispunct.3
  head/lib/libc/locale/isspace.3
  head/lib/libc/locale/nl_langinfo.3

Modified: head/lib/libc/locale/Makefile.inc
==
--- head/lib/libc/locale/Makefile.inc   Mon Jul 30 20:45:17 2012
(r238918)
+++ head/lib/libc/locale/Makefile.inc   Mon Jul 30 20:56:19 2012
(r238919)
@@ -47,6 +47,11 @@ MAN+=big5.5 euc.5 gb18030.5 gb2312.5 gb
 
 MLINKS+=btowc.3 wctob.3
 MLINKS+=isdigit.3 isnumber.3
+MLINKS+=isgraph.3 isgraph_l.3
+MLINKS+=islower.3 islower_l.3
+MLINKS+=ispunct.3 ispunct_l.3
+MLINKS+=isspace.3 isspace_l.3
+MLINKS+=nl_langinfo.3 nl_langinfo_l.3
 MLINKS+=iswalnum.3 iswalpha.3 iswalnum.3 iswascii.3 iswalnum.3 iswblank.3 \
iswalnum.3 iswcntrl.3 iswalnum.3 iswdigit.3 iswalnum.3 iswgraph.3 \
iswalnum.3 iswhexnumber.3 \

Modified: head/lib/libc/locale/isgraph.3
==
--- head/lib/libc/locale/isgraph.3  Mon Jul 30 20:45:17 2012
(r238918)
+++ head/lib/libc/locale/isgraph.3  Mon Jul 30 20:56:19 2012
(r238919)
@@ -32,7 +32,7 @@
 .\" @(#)isgraph.3  8.2 (Berkeley) 12/11/93
 .\" $FreeBSD$
 .\"
-.Dd July 17, 2005
+.Dd July 30, 2012
 .Dt ISGRAPH 3
 .Os
 .Sh NAME
@@ -44,6 +44,8 @@
 .In ctype.h
 .Ft int
 .Fn isgraph "int c"
+.Ft int
+.Fn isgraph_l "int c" "locale_t loc"
 .Sh DESCRIPTION
 The
 .Fn isgraph
@@ -79,11 +81,19 @@ In the ASCII character set, this include
 .It "\&166\ ``v''" Ta "167\ ``w''" Ta "170\ ``x''" Ta "171\ ``y''" Ta "172\ 
``z''"
 .It "\&173\ ``{''" Ta "174\ ``|''" Ta "175\ ``}''" Ta "176\ ``~''" Ta \&
 .El
+.Pp
+The
+.Fn isgraph_l
+function takes an explicit locale argument, whereas the
+.Fn isgraph
+function uses the current global or per-thread locale.
 .Sh RETURN VALUES
 The
 .Fn isgraph
-function returns zero if the character tests false and
-returns non-zero if the character tests true.
+and
+.Fn isgraph_l
+functions return zero if the character tests false and
+return non-zero if the character tests true.
 .Sh COMPATIBILITY
 The
 .Bx 4.4
@@ -103,3 +113,7 @@ The
 .Fn isgraph
 function conforms to
 .St -isoC .
+The
+.Fn isgraph_l
+function conforms to
+.St -p1003.1-2008 .

Modified: head/lib/libc/locale/islower.3
==
--- head/lib/libc/locale/islower.3  Mon Jul 30 20:45:17 2012
(r238918)
+++ head/lib/libc/locale/islower.3  Mon Jul 30 20:56:19 2012
(r238919)
@@ -32,7 +32,7 @@
 .\" @(#)islower.3  8.1 (Berkeley) 6/4/93
 .\" $FreeBSD$
 .\"
-.Dd July 17, 2005
+.Dd July 30, 2012
 .Dt ISLOWER 3
 .Os
 .Sh NAME
@@ -44,6 +44,8 @@
 .In ctype.h
 .Ft int
 .Fn islower "int c"
+.Ft int
+.Fn islower_l "int c" "locale_t loc"
 .Sh DESCRIPTION
 The
 .Fn islower
@@ -63,11 +65,18 @@ In the ASCII character set, this include
 .It "\&165\ ``u''" Ta "166\ ``v''" Ta "167\ ``w''" Ta "170\ ``x''" Ta "171\ 
``y''"
 .It "\&172\ ``z''" Ta \& Ta \& Ta \& Ta \&
 .El
+The
+.Fn islower_l
+function takes an explicit locale argument, whereas the
+.Fn islower
+function uses the current global or per-thread locale. 
 .Sh RETURN VALUES
 The
 .Fn islower
-function returns zero if the character tests false and
-returns non-zero if the character tests true.
+and
+.Fn islower_l
+functions return zero if the character tests false and
+return non-zero if the character tests true.
 .Sh COMPATIBILITY
 The
 .Bx 4.4
@@ -88,3 +97,7 @@ The
 .Fn islower
 function conforms to
 .St -isoC .
+The
+.Fn islower_l
+function conforms to
+.St -p1003.1-2008 .

Modified: head/lib/libc/locale/ispunct.3
==
--- head/lib/libc/locale/ispunct.3  Mon Jul 30 20:45:17 2012
(r238918)
+++ head/lib/libc/locale/ispunct.3  Mon Jul 30 20:56:19 2012
(r238919)
@@ -32,7 +32,7 @@
 .\"@(#)ispunct.3   8.1 (Berkeley) 6/4/93
 .\" $FreeBSD$
 .\"
-.Dd July 17, 2005
+.Dd July 30, 2012
 .Dt ISPUNCT 3
 .Os
 .Sh NAME
@@ -44,6 +44,8 @@
 .In ctype.h
 .Ft int
 .Fn ispunct "int c"
+.Ft int
+.Fn ispunct_l "int c" "locale_t loc"
 .Sh DESCRIPTION
 The
 .Fn ispunct
@@ -69,11 +71,19 @@ In the ASCII character set, this include
 .It "\&136\ ``^''" Ta "137\ ``_''" Ta "140\ ```''" Ta "173\ ``{''" Ta "174\ 
``|''"
 .It "\&175\ ``}''" Ta "176\ ``~''" Ta \& Ta \& Ta \&
 .El
+.Pp
+The
+.Fn ispunct_l
+function tak

svn commit: r238813 - head/sbin/geom/class/sched

2012-07-26 Thread Isabell Long
Author: issyl0 (doc committer)
Date: Thu Jul 26 17:30:34 2012
New Revision: 238813
URL: http://svn.freebsd.org/changeset/base/238813

Log:
  The ad(4) driver no longer exists in FreeBSD CURRENT or 9, so change the
  references to it in gsched(8) to the existing ada(4) driver.
  
  PR:   docs/170085
  Submitted by: olgeni
  Approved by:  gavin
  MFC after:5 days

Modified:
  head/sbin/geom/class/sched/gsched.8

Modified: head/sbin/geom/class/sched/gsched.8
==
--- head/sbin/geom/class/sched/gsched.8 Thu Jul 26 16:45:28 2012
(r238812)
+++ head/sbin/geom/class/sched/gsched.8 Thu Jul 26 17:30:34 2012
(r238813)
@@ -25,7 +25,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd August 29, 2010
+.Dd July 26, 2012 
 .Dt GSCHED 8
 .Os
 .Sh NAME
@@ -135,19 +135,19 @@ maximum amount of debug information is p
 Exit status is 0 on success, and 1 if the command fails.
 .Sh EXAMPLES
 The following example shows how to create a scheduling provider for disk
-.Pa /dev/ad0 ,
+.Pa /dev/ada0 ,
 and how to destroy it.
 .Bd -literal -offset indent
 # Load the geom_sched module:
 kldload geom_sched
 # Load some scheduler classes used by geom_sched:
 kldload gsched_rr
-# Configure device ad0 to use scheduler "rr":
-geom sched insert -a rr ad0
-# Now provider ad0 uses the "rr" algorithm;
-# the new geom is ad0.sched.
+# Configure device ada0 to use scheduler "rr":
+geom sched insert -a rr ada0
+# Now provider ada0 uses the "rr" algorithm;
+# the new geom is ada0.sched.
 # Remove the scheduler on the device:
-geom sched destroy -v ad0.sched.
+geom sched destroy -v ada0.sched.
 .Ed
 .Sh SEE ALSO
 .Xr geom 4 ,
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"


svn commit: r238781 - head/lib/libc/locale

2012-07-25 Thread Isabell Long
Author: issyl0 (doc committer)
Date: Wed Jul 25 22:17:44 2012
New Revision: 238781
URL: http://svn.freebsd.org/changeset/base/238781

Log:
  Add a new man page containing details of new locale-specific functions for
  wctype.h, iswalnum_l(3).  Add it and its functions to the Makefile.
  
  Reviewed by:  gavin, jilles
  Approved by:  theraven
  MFC after:5 days

Added:
  head/lib/libc/locale/iswalnum_l.3   (contents, props changed)
Modified:
  head/lib/libc/locale/Makefile.inc

Modified: head/lib/libc/locale/Makefile.inc
==
--- head/lib/libc/locale/Makefile.inc   Wed Jul 25 21:59:10 2012
(r238780)
+++ head/lib/libc/locale/Makefile.inc   Wed Jul 25 22:17:44 2012
(r238781)
@@ -30,7 +30,8 @@ MAN+= btowc.3 \
ctype.3 digittoint.3 isalnum.3 isalpha.3 isascii.3 isblank.3 iscntrl.3 \
isdigit.3 isgraph.3 isideogram.3 islower.3 isphonogram.3 isprint.3 \
ispunct.3 isrune.3 isspace.3 isspecial.3 \
-   isupper.3 iswalnum.3 isxdigit.3 localeconv.3 mblen.3 mbrlen.3 \
+   isupper.3 iswalnum.3 iswalnum_l.3 isxdigit.3 \
+   localeconv.3 mblen.3 mbrlen.3 \
mbrtowc.3 \
mbsinit.3 \
mbsrtowcs.3 mbstowcs.3 mbtowc.3 multibyte.3 \
@@ -53,6 +54,18 @@ MLINKS+=iswalnum.3 iswalpha.3 iswalnum.3
iswalnum.3 iswphonogram.3 iswalnum.3 iswprint.3 iswalnum.3 iswpunct.3 \
iswalnum.3 iswrune.3 iswalnum.3 iswspace.3 iswalnum.3 iswspecial.3 \
iswalnum.3 iswupper.3 iswalnum.3 iswxdigit.3
+MLINKS+=iswalnum_l.3 iswalpha_l.3 iswalnum_l.3 iswcntrl_l.3 \
+   iswalnum_l.3 iswctype_l.3 iswalnum_l.3 iswdigit_l.3 \
+   iswalnum_l.3 iswgraph_l.3 iswalnum_l.3 iswlower_l.3 \
+   iswalnum_l.3 iswprint_l.3 iswalnum_l.3 iswpunct_l.3 \
+   iswalnum_l.3 iswspace_l.3 iswalnum_l.3 iswupper_l.3 \
+   iswalnum_l.3 iswxdigit_l.3 iswalnum_l.3 towlower_l.3 \
+   iswalnum_l.3 towupper_l.3 iswalnum_l.3 wctype_l.3 \
+   iswalnum_l.3 iswblank_l.3 iswalnum_l.3 iswhexnumber_l.3 \
+   iswalnum_l.3 iswideogram_l.3 iswalnum_l.3 iswnumber_l.3 \
+   iswalnum_l.3 iswphonogram_l.3 iswalnum_l.3 iswrune_l.3 \
+   iswalnum_l.3 iswspecial_l.3 iswalnum_l.3 nextwctype_l.3 \
+   iswalnum_l.3 towctrans_l.3 iswalnum_l.3 wctrans_l.3
 MLINKS+=isxdigit.3 ishexnumber.3
 MLINKS+=mbsrtowcs.3 mbsnrtowcs.3
 MLINKS+=wcsrtombs.3 wcsnrtombs.3

Added: head/lib/libc/locale/iswalnum_l.3
==
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ head/lib/libc/locale/iswalnum_l.3   Wed Jul 25 22:17:44 2012
(r238781)
@@ -0,0 +1,168 @@
+.\" Copyright (c) 2012 Isabell Long 
+.\" All rights reserved.
+.\"
+.\" Redistribution and use in source and binary forms, with or without
+.\" modification, are permitted provided that the following conditions
+.\" are met:
+.\" 1. Redistributions of source code must retain the above copyright
+.\"notice, this list of conditions and the following disclaimer.
+.\" 2. Redistributions in binary form must reproduce the above copyright
+.\"notice, this list of conditions and the following disclaimer in the
+.\"documentation and/or other materials provided with the distribution.
+.\"
+.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
+.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
+.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+.\" SUCH DAMAGE.
+.\"
+.\" $FreeBSD$
+.\"
+.Dt ISWALNUM_L 3
+.Dd July 25, 2012
+.Os
+.Sh NAME
+.Nm iswalnum_l ,
+.Nm iswalpha_l ,
+.Nm iswcntrl_l ,
+.Nm iswctype_l ,
+.Nm iswdigit_l ,
+.Nm iswgraph_l ,
+.Nm iswlower_l ,
+.Nm iswprint_l ,
+.Nm iswpunct_l ,
+.Nm iswspace_l ,
+.Nm iswupper_l ,
+.Nm iswxdigit_l ,
+.Nm towlower_l ,
+.Nm towupper_l ,
+.Nm wctype_l ,
+.Nm iswblank_l ,
+.Nm iswhexnumber_l ,
+.Nm iswideogram_l ,
+.Nm iswnumber_l ,
+.Nm iswphonogram_l ,
+.Nm iswrune_l ,
+.Nm iswspecial_l ,
+.Nm nextwctype_l ,
+.Nm towctrans_l ,
+.Nm wctrans_l
+.Nd wide character classification utilities
+.Sh LIBRARY
+.Lb libc
+.Sh SYNOPSIS
+.In wctype.h
+.Ft int
+.Fn iswalnum_l "wint_t wc" "locale_t loc"
+.Ft int
+.Fn iswalpha_l "wint_t wc" "loc

svn commit: r238685 - in stable/8: sbin/ipfw sys/netinet/ipfw

2012-07-22 Thread Isabell Long
Author: issyl0 (doc committer)
Date: Sun Jul 22 11:22:04 2012
New Revision: 238685
URL: http://svn.freebsd.org/changeset/base/238685

Log:
  MFC r238063:
   - Make ipfw's sched rules case insensitive, for user-friendliness.
   - Add a note to the ipfw(8) man page about the rules no longer being
   case sensitive.
   - Fix some typos in the man page.
  
  PR:   docs/164772
  Reviewed by:  bz
  Approved by:  gavin

Modified:
  stable/8/sbin/ipfw/ipfw.8
  stable/8/sys/netinet/ipfw/ip_dummynet.c
Directory Properties:
  stable/8/sbin/ipfw/   (props changed)
  stable/8/sys/   (props changed)

Modified: stable/8/sbin/ipfw/ipfw.8
==
--- stable/8/sbin/ipfw/ipfw.8   Sun Jul 22 11:07:59 2012(r238684)
+++ stable/8/sbin/ipfw/ipfw.8   Sun Jul 22 11:22:04 2012(r238685)
@@ -1,7 +1,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd March 9, 2012
+.Dd July 3, 2012
 .Dt IPFW 8
 .Os
 .Sh NAME
@@ -2209,19 +2209,20 @@ Specifies the weight to be used for flow
 The weight must be in the range 1..100, and defaults to 1.
 .El
 .Pp
-The following parameters can be configured for a scheduler:
+The following case-insensitive parameters can be configured for a
+scheduler:
 .Pp
 .Bl -tag -width indent -compact
-.It Cm type Ar {fifo | wf2qp | rr | qfq}
+.It Cm type Ar {fifo | wf2q+ | rr | qfq}
 specifies the scheduling algorithm to use.
 .Bl -tag -width indent -compact
-.It cm fifo
+.It Cm fifo
 is just a FIFO scheduler (which means that all packets
 are stored in the same queue as they arrive to the scheduler).
 FIFO has O(1) per-packet time complexity, with very low
 constants (estimate 60-80ns on a 2GHz desktop machine)
 but gives no service guarantees.
-.It Cm wf2qp
+.It Cm wf2q+
 implements the WF2Q+ algorithm, which is a Weighted Fair Queueing
 algorithm which permits flows to share bandwidth according to
 their weights. Note that weights are not priorities; even a flow

Modified: stable/8/sys/netinet/ipfw/ip_dummynet.c
==
--- stable/8/sys/netinet/ipfw/ip_dummynet.c Sun Jul 22 11:07:59 2012
(r238684)
+++ stable/8/sys/netinet/ipfw/ip_dummynet.c Sun Jul 22 11:22:04 2012
(r238685)
@@ -97,7 +97,7 @@ find_sched_type(int type, char *name)
struct dn_alg *d;
 
SLIST_FOREACH(d, &dn_cfg.schedlist, next) {
-   if (d->type == type || (name && !strcmp(d->name, name)))
+   if (d->type == type || (name && !strcasecmp(d->name, name)))
return d;
}
return NULL; /* not found */
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"


svn commit: r238684 - in stable/9: sbin/ipfw sys

2012-07-22 Thread Isabell Long
Author: issyl0 (doc committer)
Date: Sun Jul 22 11:07:59 2012
New Revision: 238684
URL: http://svn.freebsd.org/changeset/base/238684

Log:
  Fix mergeinfo that should have been committed as part of r238683.
  
  Approved by:  gavin
  Approved by:  re (kib), implicit, approved in original merge request

Modified:
Directory Properties:
  stable/9/sbin/ipfw/   (props changed)
  stable/9/sys/   (props changed)
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"


svn commit: r238683 - in stable/9: sbin/ipfw sys/netinet/ipfw

2012-07-22 Thread Isabell Long
Author: issyl0 (doc committer)
Date: Sun Jul 22 11:00:02 2012
New Revision: 238683
URL: http://svn.freebsd.org/changeset/base/238683

Log:
  MFC r238063:
   - Make ipfw's sched rules case insensitive, for user-friendliness.
   - Add a note to the ipfw(8) man page about the rules no longer being
   case sensitive.
   - Fix some typos in the man page.
  
  PR:   docs/164772
  Reviewed by:  bz
  Approved by:  gavin
  Approved by:  re (kib)

Modified:
  stable/9/sbin/ipfw/ipfw.8
  stable/9/sys/netinet/ipfw/ip_dummynet.c

Modified: stable/9/sbin/ipfw/ipfw.8
==
--- stable/9/sbin/ipfw/ipfw.8   Sun Jul 22 10:21:42 2012(r238682)
+++ stable/9/sbin/ipfw/ipfw.8   Sun Jul 22 11:00:02 2012(r238683)
@@ -1,7 +1,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd March 9, 2012
+.Dd July 3, 2012
 .Dt IPFW 8
 .Os
 .Sh NAME
@@ -2225,19 +2225,20 @@ Specifies the weight to be used for flow
 The weight must be in the range 1..100, and defaults to 1.
 .El
 .Pp
-The following parameters can be configured for a scheduler:
+The following case-insensitive parameters can be configured for a
+scheduler:
 .Pp
 .Bl -tag -width indent -compact
-.It Cm type Ar {fifo | wf2qp | rr | qfq}
+.It Cm type Ar {fifo | wf2q+ | rr | qfq}
 specifies the scheduling algorithm to use.
 .Bl -tag -width indent -compact
-.It cm fifo
+.It Cm fifo
 is just a FIFO scheduler (which means that all packets
 are stored in the same queue as they arrive to the scheduler).
 FIFO has O(1) per-packet time complexity, with very low
 constants (estimate 60-80ns on a 2GHz desktop machine)
 but gives no service guarantees.
-.It Cm wf2qp
+.It Cm wf2q+
 implements the WF2Q+ algorithm, which is a Weighted Fair Queueing
 algorithm which permits flows to share bandwidth according to
 their weights. Note that weights are not priorities; even a flow

Modified: stable/9/sys/netinet/ipfw/ip_dummynet.c
==
--- stable/9/sys/netinet/ipfw/ip_dummynet.c Sun Jul 22 10:21:42 2012
(r238682)
+++ stable/9/sys/netinet/ipfw/ip_dummynet.c Sun Jul 22 11:00:02 2012
(r238683)
@@ -97,7 +97,7 @@ find_sched_type(int type, char *name)
struct dn_alg *d;
 
SLIST_FOREACH(d, &dn_cfg.schedlist, next) {
-   if (d->type == type || (name && !strcmp(d->name, name)))
+   if (d->type == type || (name && !strcasecmp(d->name, name)))
return d;
}
return NULL; /* not found */
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"


svn commit: r238540 - head/sbin/ipfw

2012-07-16 Thread Isabell Long
Author: issyl0 (doc committer)
Date: Mon Jul 16 22:15:30 2012
New Revision: 238540
URL: http://svn.freebsd.org/changeset/base/238540

Log:
  In ipfw(8), make the text about dynamic rules consistent.
  
  PR:   docs/120539
  Approved by:  gabor (mentor)
  MFC after:5 days

Modified:
  head/sbin/ipfw/ipfw.8

Modified: head/sbin/ipfw/ipfw.8
==
--- head/sbin/ipfw/ipfw.8   Mon Jul 16 22:07:29 2012(r238539)
+++ head/sbin/ipfw/ipfw.8   Mon Jul 16 22:15:30 2012(r238540)
@@ -1,7 +1,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd July 9, 2012
+.Dd July 16, 2012
 .Dt IPFW 8
 .Os
 .Sh NAME
@@ -2967,9 +2967,11 @@ This will let the firewall install dynam
 those connection which start with a regular SYN packet coming
 from the inside of our network.
 Dynamic rules are checked when encountering the first
-.Cm check-state
-or
+occurrence of a
+.Cm check-state ,
 .Cm keep-state
+or
+.Cm limit
 rule.
 A
 .Cm check-state
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"


svn commit: r238482 - in stable/9/lib/libc: stdlib stdtime

2012-07-15 Thread Isabell Long
Author: issyl0 (doc committer)
Date: Sun Jul 15 11:39:56 2012
New Revision: 238482
URL: http://svn.freebsd.org/changeset/base/238482

Log:
  MFC r237573:
   Add more locale-specific functions to the relevant man pages and
   Makefiles:
 - libc/stdtime/strftime.3
 - libc/stdtime/strptime.3
 - libc/stdlib/strfmon.3
  
  Approved by:  gabor (mentor)
  Approved by:  re (kib)

Modified:
  stable/9/lib/libc/stdlib/Makefile.inc
  stable/9/lib/libc/stdlib/strfmon.3
  stable/9/lib/libc/stdtime/Makefile.inc
  stable/9/lib/libc/stdtime/strftime.3
  stable/9/lib/libc/stdtime/strptime.3
Directory Properties:
  stable/9/lib/libc/   (props changed)
  stable/9/lib/libc/stdtime/   (props changed)

Modified: stable/9/lib/libc/stdlib/Makefile.inc
==
--- stable/9/lib/libc/stdlib/Makefile.inc   Sun Jul 15 11:39:35 2012
(r238481)
+++ stable/9/lib/libc/stdlib/Makefile.inc   Sun Jul 15 11:39:56 2012
(r238482)
@@ -42,6 +42,7 @@ MLINKS+=rand.3 rand_r.3 rand.3 srand.3 r
 MLINKS+=random.3 initstate.3 random.3 setstate.3 random.3 srandom.3 \
random.3 srandomdev.3
 MLINKS+=radixsort.3 sradixsort.3
+MLINKS+=strfmon.3 strfmon_l.3
 MLINKS+=strtod.3 strtof.3 strtod.3 strtold.3
 MLINKS+=strtol.3 strtoll.3 strtol.3 strtoq.3 strtol.3 strtoimax.3
 MLINKS+=strtoul.3 strtoull.3 strtoul.3 strtouq.3 strtoul.3 strtoumax.3

Modified: stable/9/lib/libc/stdlib/strfmon.3
==
--- stable/9/lib/libc/stdlib/strfmon.3  Sun Jul 15 11:39:35 2012
(r238481)
+++ stable/9/lib/libc/stdlib/strfmon.3  Sun Jul 15 11:39:56 2012
(r238482)
@@ -24,7 +24,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd October 12, 2002
+.Dd June 25, 2012
 .Dt STRFMON 3
 .Os
 .Sh NAME
@@ -36,6 +36,8 @@
 .In monetary.h
 .Ft ssize_t
 .Fn strfmon "char * restrict s" "size_t maxsize" "const char * restrict 
format" "..."
+.Ft ssize_t
+.Fn strfmon_l "char * restrict s" "size_t maxsize" "locale_t loc" "const char 
* restrict format" "..."
 .Sh DESCRIPTION
 The
 .Fn strfmon
@@ -47,6 +49,12 @@ No more than
 .Fa maxsize
 bytes are placed into the array.
 .Pp
+The
+.Fn strfmon_l
+function does the same as
+.Fn strfmon
+but takes an explicit locale rather than using the current locale. 
+.Pp
 The format string is composed of zero or more directives:
 ordinary characters (not
 .Cm % ) ,
@@ -129,6 +137,11 @@ the contents of the array are indetermin
 and
 .Va errno
 is set to indicate the error.
+.Pp
+The
+.Fn strfmon_l
+function returns the same values as
+.Fn strfmon .
 .Sh ERRORS
 The
 .Fn strfmon
@@ -149,6 +162,10 @@ The
 function
 conforms to
 .St -p1003.1-2001 .
+The
+.Fn strfmon_l
+function conforms to
+.St -p1003.1-2008 .
 .Sh AUTHORS
 .An -nosplit
 The

Modified: stable/9/lib/libc/stdtime/Makefile.inc
==
--- stable/9/lib/libc/stdtime/Makefile.inc  Sun Jul 15 11:39:35 2012
(r238481)
+++ stable/9/lib/libc/stdtime/Makefile.inc  Sun Jul 15 11:39:56 2012
(r238482)
@@ -18,4 +18,6 @@ MLINKS+=ctime.3 asctime.3 ctime.3 diffti
ctime.3 localtime.3 ctime.3 mktime.3 ctime.3 timegm.3 \
ctime.3 ctime_r.3 ctime.3 localtime_r.3 ctime.3 gmtime_r.3 \
ctime.3 asctime_r.3
+MLINKS+=strftime.3 strftime_l.3
+MLINKS+=strptime.3 strptime_l.3
 MLINKS+=time2posix.3 posix2time.3

Modified: stable/9/lib/libc/stdtime/strftime.3
==
--- stable/9/lib/libc/stdtime/strftime.3Sun Jul 15 11:39:35 2012
(r238481)
+++ stable/9/lib/libc/stdtime/strftime.3Sun Jul 15 11:39:56 2012
(r238482)
@@ -32,7 +32,7 @@
 .\" @(#)strftime.3 8.1 (Berkeley) 6/4/93
 .\" $FreeBSD$
 .\"
-.Dd November 4, 2004
+.Dd June 25, 2012
 .Dt STRFTIME 3
 .Os
 .Sh NAME
@@ -49,6 +49,8 @@
 .Fa "const char * restrict format"
 .Fa "const struct tm * restrict timeptr"
 .Fc
+.Ft size_t
+.Fn strftime_l "char *restrict buf" "size_t maxsize" "const char * restrict 
format" "const struct tm *restrict timeptr" "locale_t loc"
 .Sh DESCRIPTION
 The
 .Fn strftime
@@ -58,6 +60,11 @@ into the buffer
 .Fa buf
 according to the string pointed to by
 .Fa format .
+The function
+.Fn strftime_l
+does the same as
+.Fn strftime
+but takes an explicit locale rather than using the current locale.
 .Pp
 The
 .Fa format
@@ -268,6 +275,10 @@ The peculiar week number and year in the
 and
 .Ql \&%V
 are defined in ISO 8601: 1988.
+The
+.Fn strftime_l
+function conforms to
+.St -p1003.1-2008 .
 .Sh BUGS
 There is no conversion specification for the phase of the moon.
 .Pp

Modified: stable/9/lib/libc/stdtime/strptime.3
==
--- stable/9/lib/libc/stdtime/strptime.3Sun Jul 15 11:39:35 2012
(r238481)
+++ stable/9/lib/libc/stdtime/strptime.3Sun Jul 15 11:39:56 2012
(r23848

svn commit: r238063 - in head: sbin/ipfw sys/netinet/ipfw

2012-07-03 Thread Isabell Long
Author: issyl0 (doc committer)
Date: Tue Jul  3 08:42:48 2012
New Revision: 238063
URL: http://svn.freebsd.org/changeset/base/238063

Log:
  - Make ipfw's sched rules case insensitive, for user-friendliness.
  - Add a note to the ipfw(8) man page about the rules no longer being
  case sensitive.
  - Fix some typos in the man page.
  
  PR:   docs/164772
  Reviewed by:  bz
  Approved by:  gabor (doc mentor, src committer)
  MFC after:2 weeks

Modified:
  head/sbin/ipfw/ipfw.8
  head/sys/netinet/ipfw/ip_dummynet.c

Modified: head/sbin/ipfw/ipfw.8
==
--- head/sbin/ipfw/ipfw.8   Tue Jul  3 08:40:20 2012(r238062)
+++ head/sbin/ipfw/ipfw.8   Tue Jul  3 08:42:48 2012(r238063)
@@ -1,7 +1,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd June 10, 2012
+.Dd July 3, 2012
 .Dt IPFW 8
 .Os
 .Sh NAME
@@ -2218,19 +2218,20 @@ Specifies the weight to be used for flow
 The weight must be in the range 1..100, and defaults to 1.
 .El
 .Pp
-The following parameters can be configured for a scheduler:
+The following case-insensitive parameters can be configured for a
+scheduler:
 .Pp
 .Bl -tag -width indent -compact
-.It Cm type Ar {fifo | wf2qp | rr | qfq}
+.It Cm type Ar {fifo | wf2q+ | rr | qfq}
 specifies the scheduling algorithm to use.
 .Bl -tag -width indent -compact
-.It cm fifo
+.It Cm fifo
 is just a FIFO scheduler (which means that all packets
 are stored in the same queue as they arrive to the scheduler).
 FIFO has O(1) per-packet time complexity, with very low
 constants (estimate 60-80ns on a 2GHz desktop machine)
 but gives no service guarantees.
-.It Cm wf2qp
+.It Cm wf2q+
 implements the WF2Q+ algorithm, which is a Weighted Fair Queueing
 algorithm which permits flows to share bandwidth according to
 their weights. Note that weights are not priorities; even a flow

Modified: head/sys/netinet/ipfw/ip_dummynet.c
==
--- head/sys/netinet/ipfw/ip_dummynet.c Tue Jul  3 08:40:20 2012
(r238062)
+++ head/sys/netinet/ipfw/ip_dummynet.c Tue Jul  3 08:42:48 2012
(r238063)
@@ -97,7 +97,7 @@ find_sched_type(int type, char *name)
struct dn_alg *d;
 
SLIST_FOREACH(d, &dn_cfg.schedlist, next) {
-   if (d->type == type || (name && !strcmp(d->name, name)))
+   if (d->type == type || (name && !strcasecmp(d->name, name)))
return d;
}
return NULL; /* not found */
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"


svn commit: r237699 - stable/9/lib/libc/string

2012-06-28 Thread Isabell Long
Author: issyl0 (doc committer)
Date: Thu Jun 28 10:05:45 2012
New Revision: 237699
URL: http://svn.freebsd.org/changeset/base/237699

Log:
  Merge head revisions 237393, 237409:
Locale-specific man page edits:
  - libc/string/strcoll.3
  - libc/string/strstr.3
  - libc/string/strxfrm.3
  - libc/string/strcasecmp.3
  - libc/string/Makefile.inc
  
  Approved by:  gabor (mentor)

Modified:
  stable/9/lib/libc/string/Makefile.inc
  stable/9/lib/libc/string/strcasecmp.3
  stable/9/lib/libc/string/strcoll.3
  stable/9/lib/libc/string/strstr.3
  stable/9/lib/libc/string/strxfrm.3
Directory Properties:
  stable/9/lib/libc/   (props changed)

Modified: stable/9/lib/libc/string/Makefile.inc
==
--- stable/9/lib/libc/string/Makefile.inc   Thu Jun 28 09:18:11 2012
(r237698)
+++ stable/9/lib/libc/string/Makefile.inc   Thu Jun 28 10:05:45 2012
(r237699)
@@ -42,10 +42,13 @@ MLINKS+=ffs.3 ffsl.3 \
ffs.3 flsll.3
 MLINKS+=index.3 rindex.3
 MLINKS+=memchr.3 memrchr.3
-MLINKS+=strcasecmp.3 strncasecmp.3
+MLINKS+=strcasecmp.3 strncasecmp.3 \
+   strcasecmp.3 strcasecmp_l.3 \
+   strcasecmp.3 strncasecmp_l.3
 MLINKS+=strcat.3 strncat.3
 MLINKS+=strchr.3 strrchr.3
 MLINKS+=strcmp.3 strncmp.3
+MLINKS+=strcoll.3 strcoll_l.3
 MLINKS+=strcpy.3 stpcpy.3 \
strcpy.3 stpncpy.3 \
strcpy.3 strncpy.3
@@ -57,8 +60,10 @@ MLINKS+=strerror.3 perror.3 \
 MLINKS+=strlcpy.3 strlcat.3
 MLINKS+=strlen.3 strnlen.3
 MLINKS+=strstr.3 strcasestr.3 \
-   strstr.3 strnstr.3
+   strstr.3 strnstr.3 \
+   strstr.3 strcasestr_l.3
 MLINKS+=strtok.3 strtok_r.3
+MLINKS+=strxfrm.3 strxfrm_l.3
 MLINKS+=wmemchr.3 wcpcpy.3 \
wmemchr.3 wcpncpy.3 \
wmemchr.3 wcscasecmp.3 \

Modified: stable/9/lib/libc/string/strcasecmp.3
==
--- stable/9/lib/libc/string/strcasecmp.3   Thu Jun 28 09:18:11 2012
(r237698)
+++ stable/9/lib/libc/string/strcasecmp.3   Thu Jun 28 10:05:45 2012
(r237699)
@@ -45,6 +45,12 @@
 .Fn strcasecmp "const char *s1" "const char *s2"
 .Ft int
 .Fn strncasecmp "const char *s1" "const char *s2" "size_t len"
+.In string.h
+.In xlocale.h
+.Ft int
+.Fn strcasecmp_l "const char *s1" "const char *s2" "locale_t loc"
+.Ft int
+.Fn strncasecmp_l "const char *s1" "const char *s2" "site_t len" "locale_t loc"
 .Sh DESCRIPTION
 The
 .Fn strcasecmp
@@ -58,16 +64,22 @@ and
 .Pp
 The
 .Fn strncasecmp
-compares at most
+function compares at most
 .Fa len
 characters.
-.Sh RETURN VALUES
 The
+.Fn strcasecmp_l
+and
+.Fn strncasecmp_l
+functions do the same as their non-locale versions above, but take an
+explicit locale rather than using the current locale.
+.Sh RETURN VALUES
+The functions
 .Fn strcasecmp
 and
 .Fn strncasecmp
 return an integer greater than, equal to, or less than 0,
-according as
+depending on whether
 .Fa s1
 is lexicographically greater than, equal to, or less than
 .Fa s2
@@ -77,6 +89,11 @@ The comparison is done using unsigned ch
 .Sq Li \e200
 is greater than
 .Ql \e0 .
+The functions
+.Fn strcasecmp_l
+and
+.Fn strncasecmp_l
+do the same but take explicit locales.
 .Sh SEE ALSO
 .Xr bcmp 3 ,
 .Xr memcmp 3 ,

Modified: stable/9/lib/libc/string/strcoll.3
==
--- stable/9/lib/libc/string/strcoll.3  Thu Jun 28 09:18:11 2012
(r237698)
+++ stable/9/lib/libc/string/strcoll.3  Thu Jun 28 10:05:45 2012
(r237699)
@@ -44,6 +44,8 @@
 .In string.h
 .Ft int
 .Fn strcoll "const char *s1" "const char *s2"
+.Ft int
+.Fn strcoll_l "const char *s1" "const char *s2" "locale_t loc"
 .Sh DESCRIPTION
 The
 .Fn strcoll
@@ -54,7 +56,7 @@ and
 .Fa s2
 according to the current locale collation
 and returns an integer greater than, equal to, or less than 0,
-according as
+depending on whether
 .Fa s1
 is greater than, equal to, or less than
 .Fa s2 .
@@ -62,6 +64,9 @@ If information about the current locale 
 the value of
 .Fn strcmp s1 s2
 is returned.
+The
+.Fn strcoll_l
+function uses an explicit locale argument rather than the system locale.
 .Sh SEE ALSO
 .Xr setlocale 3 ,
 .Xr strcmp 3 ,
@@ -70,6 +75,9 @@ is returned.
 .Sh STANDARDS
 The
 .Fn strcoll
-function
-conforms to
+function conforms to
 .St -isoC .
+The
+.Fn strcoll_l
+function conforms to
+.St -p1003.1-2008 .

Modified: stable/9/lib/libc/string/strstr.3
==
--- stable/9/lib/libc/string/strstr.3   Thu Jun 28 09:18:11 2012
(r237698)
+++ stable/9/lib/libc/string/strstr.3   Thu Jun 28 10:05:45 2012
(r237699)
@@ -49,6 +49,10 @@
 .Fn strcasestr "const char *big" "const char *little"
 .Ft char *
 .Fn strnstr "const char *big" "const char *little" "size_t len"
+.In string.h
+.In xlocale.h
+.Ft char *
+.Fn strcasestr_l "const char *big" "const char *little" "loca

Re: svn commit: r237573 - in head/lib/libc: stdlib stdtime

2012-06-25 Thread Isabell Long
On Mon, Jun 25, 2012 at 09:51:40PM +, Isabell Long wrote:
> Author: issyl0 (doc committer)
> Date: Mon Jun 25 21:51:40 2012
> New Revision: 237573
> URL: http://svn.freebsd.org/changeset/base/237573
> 
> Log:
>   Add more locale-specific functions to the relevant man pages and
>   Makefiles:
>   - libc/stdtime/strftime.3
>   - libc/stdtime/strptime.3
>   - libc/stdlib/strfmon.3

I forgot to add the MFC time!  5 days.  :-)
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"


svn commit: r237573 - in head/lib/libc: stdlib stdtime

2012-06-25 Thread Isabell Long
Author: issyl0 (doc committer)
Date: Mon Jun 25 21:51:40 2012
New Revision: 237573
URL: http://svn.freebsd.org/changeset/base/237573

Log:
  Add more locale-specific functions to the relevant man pages and
  Makefiles:
  - libc/stdtime/strftime.3
  - libc/stdtime/strptime.3
  - libc/stdlib/strfmon.3
  
  Reviewed by:  theraven
  Approved by:  gabor (mentor)

Modified:
  head/lib/libc/stdlib/Makefile.inc
  head/lib/libc/stdlib/strfmon.3
  head/lib/libc/stdtime/Makefile.inc
  head/lib/libc/stdtime/strftime.3
  head/lib/libc/stdtime/strptime.3

Modified: head/lib/libc/stdlib/Makefile.inc
==
--- head/lib/libc/stdlib/Makefile.inc   Mon Jun 25 21:33:45 2012
(r237572)
+++ head/lib/libc/stdlib/Makefile.inc   Mon Jun 25 21:51:40 2012
(r237573)
@@ -42,6 +42,7 @@ MLINKS+=rand.3 rand_r.3 rand.3 srand.3 r
 MLINKS+=random.3 initstate.3 random.3 setstate.3 random.3 srandom.3 \
random.3 srandomdev.3
 MLINKS+=radixsort.3 sradixsort.3
+MLINKS+=strfmon.3 strfmon_l.3
 MLINKS+=strtod.3 strtof.3 strtod.3 strtold.3
 MLINKS+=strtol.3 strtoll.3 strtol.3 strtoq.3 strtol.3 strtoimax.3
 MLINKS+=strtoul.3 strtoull.3 strtoul.3 strtouq.3 strtoul.3 strtoumax.3

Modified: head/lib/libc/stdlib/strfmon.3
==
--- head/lib/libc/stdlib/strfmon.3  Mon Jun 25 21:33:45 2012
(r237572)
+++ head/lib/libc/stdlib/strfmon.3  Mon Jun 25 21:51:40 2012
(r237573)
@@ -24,7 +24,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd October 12, 2002
+.Dd June 25, 2012
 .Dt STRFMON 3
 .Os
 .Sh NAME
@@ -36,6 +36,8 @@
 .In monetary.h
 .Ft ssize_t
 .Fn strfmon "char * restrict s" "size_t maxsize" "const char * restrict 
format" "..."
+.Ft ssize_t
+.Fn strfmon_l "char * restrict s" "size_t maxsize" "locale_t loc" "const char 
* restrict format" "..."
 .Sh DESCRIPTION
 The
 .Fn strfmon
@@ -47,6 +49,12 @@ No more than
 .Fa maxsize
 bytes are placed into the array.
 .Pp
+The
+.Fn strfmon_l
+function does the same as
+.Fn strfmon
+but takes an explicit locale rather than using the current locale. 
+.Pp
 The format string is composed of zero or more directives:
 ordinary characters (not
 .Cm % ) ,
@@ -129,6 +137,11 @@ the contents of the array are indetermin
 and
 .Va errno
 is set to indicate the error.
+.Pp
+The
+.Fn strfmon_l
+function returns the same values as
+.Fn strfmon .
 .Sh ERRORS
 The
 .Fn strfmon
@@ -149,6 +162,10 @@ The
 function
 conforms to
 .St -p1003.1-2001 .
+The
+.Fn strfmon_l
+function conforms to
+.St -p1003.1-2008 .
 .Sh AUTHORS
 .An -nosplit
 The

Modified: head/lib/libc/stdtime/Makefile.inc
==
--- head/lib/libc/stdtime/Makefile.inc  Mon Jun 25 21:33:45 2012
(r237572)
+++ head/lib/libc/stdtime/Makefile.inc  Mon Jun 25 21:51:40 2012
(r237573)
@@ -18,4 +18,6 @@ MLINKS+=ctime.3 asctime.3 ctime.3 diffti
ctime.3 localtime.3 ctime.3 mktime.3 ctime.3 timegm.3 \
ctime.3 ctime_r.3 ctime.3 localtime_r.3 ctime.3 gmtime_r.3 \
ctime.3 asctime_r.3
+MLINKS+=strftime.3 strftime_l.3
+MLINKS+=strptime.3 strptime_l.3
 MLINKS+=time2posix.3 posix2time.3

Modified: head/lib/libc/stdtime/strftime.3
==
--- head/lib/libc/stdtime/strftime.3Mon Jun 25 21:33:45 2012
(r237572)
+++ head/lib/libc/stdtime/strftime.3Mon Jun 25 21:51:40 2012
(r237573)
@@ -32,7 +32,7 @@
 .\" @(#)strftime.3 8.1 (Berkeley) 6/4/93
 .\" $FreeBSD$
 .\"
-.Dd November 4, 2004
+.Dd June 25, 2012
 .Dt STRFTIME 3
 .Os
 .Sh NAME
@@ -49,6 +49,8 @@
 .Fa "const char * restrict format"
 .Fa "const struct tm * restrict timeptr"
 .Fc
+.Ft size_t
+.Fn strftime_l "char *restrict buf" "size_t maxsize" "const char * restrict 
format" "const struct tm *restrict timeptr" "locale_t loc"
 .Sh DESCRIPTION
 The
 .Fn strftime
@@ -58,6 +60,11 @@ into the buffer
 .Fa buf
 according to the string pointed to by
 .Fa format .
+The function
+.Fn strftime_l
+does the same as
+.Fn strftime
+but takes an explicit locale rather than using the current locale.
 .Pp
 The
 .Fa format
@@ -268,6 +275,10 @@ The peculiar week number and year in the
 and
 .Ql \&%V
 are defined in ISO 8601: 1988.
+The
+.Fn strftime_l
+function conforms to
+.St -p1003.1-2008 .
 .Sh BUGS
 There is no conversion specification for the phase of the moon.
 .Pp

Modified: head/lib/libc/stdtime/strptime.3
==
--- head/lib/libc/stdtime/strptime.3Mon Jun 25 21:33:45 2012
(r237572)
+++ head/lib/libc/stdtime/strptime.3Mon Jun 25 21:51:40 2012
(r237573)
@@ -25,7 +25,7 @@
 .\"
 .\" $FreeBSD$
 .\" "
-.Dd January 4, 2003
+.Dd June 25, 2012
 .Dt STRPTIME 3
 .Os
 .Sh NAME
@@ -41,6 +41,10 @@
 .Fa "const char * restrict format"
 .Fa "struct tm * restrict timeptr"
 .Fc
+.In time.h
+.In xlocal

svn commit: r237409 - head/lib/libc/string

2012-06-21 Thread Isabell Long
Author: issyl0 (doc committer)
Date: Thu Jun 21 18:28:48 2012
New Revision: 237409
URL: http://svn.freebsd.org/changeset/base/237409

Log:
  Add the functions documented in the man pages in commit 237393 to the
  relevant Makefile.
  
  Reminded by:  gavin
  Approved by:  gabor (mentor)
  MFC after:5 days

Modified:
  head/lib/libc/string/Makefile.inc

Modified: head/lib/libc/string/Makefile.inc
==
--- head/lib/libc/string/Makefile.inc   Thu Jun 21 18:22:50 2012
(r237408)
+++ head/lib/libc/string/Makefile.inc   Thu Jun 21 18:28:48 2012
(r237409)
@@ -42,10 +42,13 @@ MLINKS+=ffs.3 ffsl.3 \
ffs.3 flsll.3
 MLINKS+=index.3 rindex.3
 MLINKS+=memchr.3 memrchr.3
-MLINKS+=strcasecmp.3 strncasecmp.3
+MLINKS+=strcasecmp.3 strncasecmp.3 \
+   strcasecmp.3 strcasecmp_l.3 \
+   strcasecmp.3 strncasecmp_l.3
 MLINKS+=strcat.3 strncat.3
 MLINKS+=strchr.3 strrchr.3
 MLINKS+=strcmp.3 strncmp.3
+MLINKS+=strcoll.3 strcoll_l.3
 MLINKS+=strcpy.3 stpcpy.3 \
strcpy.3 stpncpy.3 \
strcpy.3 strncpy.3
@@ -57,8 +60,10 @@ MLINKS+=strerror.3 perror.3 \
 MLINKS+=strlcpy.3 strlcat.3
 MLINKS+=strlen.3 strnlen.3
 MLINKS+=strstr.3 strcasestr.3 \
-   strstr.3 strnstr.3
+   strstr.3 strnstr.3 \
+   strstr.3 strcasestr_l.3
 MLINKS+=strtok.3 strtok_r.3
+MLINKS+=strxfrm.3 strxfrm_l.3
 MLINKS+=wmemchr.3 wcpcpy.3 \
wmemchr.3 wcpncpy.3 \
wmemchr.3 wcscasecmp.3 \
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"


svn commit: r237393 - head/lib/libc/string

2012-06-21 Thread Isabell Long
Author: issyl0 (doc committer)
Date: Thu Jun 21 12:52:15 2012
New Revision: 237393
URL: http://svn.freebsd.org/changeset/base/237393

Log:
  Add more locale-specific functions to the relevant man pages:
  - libc/string/strcoll.3
  - libc/string/strstr.3
  - libc/string/strxfrm.3
  - libc/string/strcasecmp.3
  
  Reviewed by:  theraven, gabor
  Approved by:  gabor (mentor)
  MFC after:5 days

Modified:
  head/lib/libc/string/strcasecmp.3
  head/lib/libc/string/strcoll.3
  head/lib/libc/string/strstr.3
  head/lib/libc/string/strxfrm.3

Modified: head/lib/libc/string/strcasecmp.3
==
--- head/lib/libc/string/strcasecmp.3   Thu Jun 21 12:51:24 2012
(r237392)
+++ head/lib/libc/string/strcasecmp.3   Thu Jun 21 12:52:15 2012
(r237393)
@@ -45,6 +45,12 @@
 .Fn strcasecmp "const char *s1" "const char *s2"
 .Ft int
 .Fn strncasecmp "const char *s1" "const char *s2" "size_t len"
+.In string.h
+.In xlocale.h
+.Ft int
+.Fn strcasecmp_l "const char *s1" "const char *s2" "locale_t loc"
+.Ft int
+.Fn strncasecmp_l "const char *s1" "const char *s2" "site_t len" "locale_t loc"
 .Sh DESCRIPTION
 The
 .Fn strcasecmp
@@ -58,16 +64,22 @@ and
 .Pp
 The
 .Fn strncasecmp
-compares at most
+function compares at most
 .Fa len
 characters.
-.Sh RETURN VALUES
 The
+.Fn strcasecmp_l
+and
+.Fn strncasecmp_l
+functions do the same as their non-locale versions above, but take an
+explicit locale rather than using the current locale.
+.Sh RETURN VALUES
+The functions
 .Fn strcasecmp
 and
 .Fn strncasecmp
 return an integer greater than, equal to, or less than 0,
-according as
+depending on whether
 .Fa s1
 is lexicographically greater than, equal to, or less than
 .Fa s2
@@ -77,6 +89,11 @@ The comparison is done using unsigned ch
 .Sq Li \e200
 is greater than
 .Ql \e0 .
+The functions
+.Fn strcasecmp_l
+and
+.Fn strncasecmp_l
+do the same but take explicit locales.
 .Sh SEE ALSO
 .Xr bcmp 3 ,
 .Xr memcmp 3 ,

Modified: head/lib/libc/string/strcoll.3
==
--- head/lib/libc/string/strcoll.3  Thu Jun 21 12:51:24 2012
(r237392)
+++ head/lib/libc/string/strcoll.3  Thu Jun 21 12:52:15 2012
(r237393)
@@ -44,6 +44,8 @@
 .In string.h
 .Ft int
 .Fn strcoll "const char *s1" "const char *s2"
+.Ft int
+.Fn strcoll_l "const char *s1" "const char *s2" "locale_t loc"
 .Sh DESCRIPTION
 The
 .Fn strcoll
@@ -54,7 +56,7 @@ and
 .Fa s2
 according to the current locale collation
 and returns an integer greater than, equal to, or less than 0,
-according as
+depending on whether
 .Fa s1
 is greater than, equal to, or less than
 .Fa s2 .
@@ -62,6 +64,9 @@ If information about the current locale 
 the value of
 .Fn strcmp s1 s2
 is returned.
+The
+.Fn strcoll_l
+function uses an explicit locale argument rather than the system locale.
 .Sh SEE ALSO
 .Xr setlocale 3 ,
 .Xr strcmp 3 ,
@@ -70,6 +75,9 @@ is returned.
 .Sh STANDARDS
 The
 .Fn strcoll
-function
-conforms to
+function conforms to
 .St -isoC .
+The
+.Fn strcoll_l
+function conforms to
+.St -p1003.1-2008 .

Modified: head/lib/libc/string/strstr.3
==
--- head/lib/libc/string/strstr.3   Thu Jun 21 12:51:24 2012
(r237392)
+++ head/lib/libc/string/strstr.3   Thu Jun 21 12:52:15 2012
(r237393)
@@ -49,6 +49,10 @@
 .Fn strcasestr "const char *big" "const char *little"
 .Ft char *
 .Fn strnstr "const char *big" "const char *little" "size_t len"
+.In string.h
+.In xlocale.h
+.Ft char *
+.Fn strcasestr_l "const char *big" "const char *little" "locale_t loc"
 .Sh DESCRIPTION
 The
 .Fn strstr
@@ -65,6 +69,12 @@ function is similar to
 but ignores the case of both strings.
 .Pp
 The
+.Fn strcasestr_l
+function does the same as
+.Fn strcasestr
+but takes an explicit locale rather than using the current locale.
+.Pp
+The
 .Fn strnstr
 function
 locates the first occurrence of the null-terminated string

Modified: head/lib/libc/string/strxfrm.3
==
--- head/lib/libc/string/strxfrm.3  Thu Jun 21 12:51:24 2012
(r237392)
+++ head/lib/libc/string/strxfrm.3  Thu Jun 21 12:52:15 2012
(r237393)
@@ -44,6 +44,8 @@
 .In string.h
 .Ft size_t
 .Fn strxfrm "char * restrict dst" "const char * restrict src" "size_t n"
+.Ft size_t
+.Fn strxfrm_l "char * restrict dst" "const char *restrict src" "size_t n" 
"locale_t loc"
 .Sh DESCRIPTION
 The
 .Fn strxfrm
@@ -73,10 +75,16 @@ after
 is equal to comparing
 two original strings with
 .Fn strcoll .
+.Pp
+.Fn strxfrm_l
+does the same, however takes an explicit locale rather than the global
+locale.
 .Sh RETURN VALUES
 Upon successful completion,
 .Fn strxfrm
-returns the length of the transformed string not including
+and
+.Fn strxfrm_l
+return the length of the transformed string not including
 the terminating

Re: svn commit: r236908 - stable/8/gnu/usr.bin/man/man

2012-06-11 Thread Isabell Long
On Mon, Jun 11, 2012 at 8:09 PM, Isabell Long  wrote:
>  PR:           docs/158973
>  Merge help:   bz
>  Approved by:  gabor (mentor)

Sorry, in this and my previous commit messages, I can never seem to
get the indentation right!  This time, I explicitly set vi's tab
length to 8 characters, and it still didn't like it, despite
displaying fine in my editor before I sent the commit.  Must try
harder...
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"


svn commit: r236908 - stable/8/gnu/usr.bin/man/man

2012-06-11 Thread Isabell Long
Author: issyl0 (doc committer)
Date: Mon Jun 11 19:09:55 2012
New Revision: 236908
URL: http://svn.freebsd.org/changeset/base/236908

Log:
  Partial merge of r213507 from head:
  
  In r178993, the ability to view a man page by giving a path to the
  man page itself was added, but never documented.  Subsequently, the
  GNU-licensed man(1) and its man page were replaced by BSD licensed
  implementations, and later on this undocumented functionality was
  also added to the new BSD-licensed man(1), together with
  documentation.
  
  This is a merge of the documentation part of that commit (r213507)
  into the GNU-licensed man(1) man page in stable/8, in order to
  document the available functionality.
  
  PR:   docs/158973
  Merge help:   bz
  Approved by:  gabor (mentor)

Modified:
  stable/8/gnu/usr.bin/man/man/man.man
Directory Properties:
  stable/8/gnu/usr.bin/man/   (props changed)

Modified: stable/8/gnu/usr.bin/man/man/man.man
==
--- stable/8/gnu/usr.bin/man/man/man.manMon Jun 11 19:05:10 2012
(r236907)
+++ stable/8/gnu/usr.bin/man/man/man.manMon Jun 11 19:09:55 2012
(r236908)
@@ -14,7 +14,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd December 3, 2005
+.Dd October 7, 2010
 .Dt MAN 1
 .Os
 .Sh NAME
@@ -233,6 +233,13 @@ printed.
 Do not actually display the man pages, but do print the location(s) of
 the files that would be formatted or displayed.
 .El
+.Ss Displaying Specific Manual Files
+The
+.Nm
+utility also supports displaying a specific manual page if passed a path
+to the file as long as it contains a
+.Sq /
+character.
 .Sh ENVIRONMENT
 .Bl -tag -width ".Ev MACHINE_ARCH"
 .It Ev LC_ALL , LC_CTYPE , LANG
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"


svn commit: r236907 - stable/7/gnu/usr.bin/man/man

2012-06-11 Thread Isabell Long
Author: issyl0 (doc committer)
Date: Mon Jun 11 19:05:10 2012
New Revision: 236907
URL: http://svn.freebsd.org/changeset/base/236907

Log:
  Partial merge of r213507 from head:
  
  In r178993, the ability to view a man page by giving a path to the
  man page itself was added, but never documented.  Subsequently, the
  GNU-licensed man(1) and its man page were replaced by BSD licensed
  implementations, and later on this undocumented functionality was
  also added to the new BSD-licensed man(1), together with
  documentation.
  
  This is a merge of the documentation part of that commit (r213507)
  into the GNU-licensed man(1) man page in stable/7, in order to
  document the available functionality.
  
  PR:   docs/158973
  Merge help:   bz
  Approved by:  gabor (mentor)

Modified:
  stable/7/gnu/usr.bin/man/man/man.man
Directory Properties:
  stable/7/gnu/usr.bin/man/   (props changed)

Modified: stable/7/gnu/usr.bin/man/man/man.man
==
--- stable/7/gnu/usr.bin/man/man/man.manMon Jun 11 18:47:26 2012
(r236906)
+++ stable/7/gnu/usr.bin/man/man/man.manMon Jun 11 19:05:10 2012
(r236907)
@@ -14,7 +14,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd December 3, 2005
+.Dd October 7, 2010
 .Dt MAN 1
 .Os
 .Sh NAME
@@ -233,6 +233,13 @@ printed.
 Do not actually display the man pages, but do print the location(s) of
 the files that would be formatted or displayed.
 .El
+.Ss Displaying Specific Manual Files
+The
+.Nm
+utility also supports displaying a specific manual page if passed a path
+to the file as long as it contains a
+.Sq /
+character.
 .Sh ENVIRONMENT
 .Bl -tag -width ".Ev MACHINE_ARCH"
 .It Ev LC_ALL , LC_CTYPE , LANG
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"


svn commit: r236860 - head/usr.bin/find

2012-06-10 Thread Isabell Long
Author: issyl0 (doc committer)
Date: Sun Jun 10 22:14:52 2012
New Revision: 236860
URL: http://svn.freebsd.org/changeset/base/236860

Log:
  Add more description and clarification about the -depth and -d options in
  both places where they are mentioned in find(1).
  
  Discussed with:   dougb
  PR:   docs/168885
  Reported by:  Ronald F. Guilmette (rfg at tristatelogic dot com)
  Approved by:  gabor (mentor)
  MFC after:3 days

Modified:
  head/usr.bin/find/find.1

Modified: head/usr.bin/find/find.1
==
--- head/usr.bin/find/find.1Sun Jun 10 20:24:01 2012(r236859)
+++ head/usr.bin/find/find.1Sun Jun 10 22:14:52 2012(r236860)
@@ -136,7 +136,7 @@ Note, the default is
 .Em not
 a breadth-first traversal.
 .Pp
-This option is equivalent to the
+This option is the BSD-specific equivalent of the
 .Ic -depth
 primary of
 .St -p1003.1-2001 .
@@ -301,7 +301,7 @@ Please refer to the
 .Ic -atime
 primary description for information on supported time units.
 .It Ic -d
-Same as
+Non-portable, BSD-specific version of
 .Ic depth .
 GNU find implements this as a primary in mistaken emulation of
 .Fx
@@ -325,9 +325,10 @@ primary will fail to delete a directory 
 Following symlinks is incompatible with this option.
 .It Ic -depth
 Always true;
-same as the
+same as the non-portable
 .Fl d
-option.
+option.  Refer to the primary description of
+.Ic -depth for full information.
 .It Ic -depth Ar n
 True if the depth of the file relative to the starting point of the traversal
 is
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"


svn commit: r236562 - stable/9/lib/libc/stdio

2012-06-04 Thread Isabell Long
Author: issyl0 (doc committer)
Date: Mon Jun  4 14:11:49 2012
New Revision: 236562
URL: http://svn.freebsd.org/changeset/base/236562

Log:
  Merge r235848 from head to stable/9:
Add two new locale-specific man pages:
- libc/stdio/scanf_l.3
- libc/stdio/printf_l.3
  
  Approved by:  gabor (mentor)

Added:
  stable/9/lib/libc/stdio/printf_l.3
 - copied unchanged from r235848, head/lib/libc/stdio/printf_l.3
  stable/9/lib/libc/stdio/scanf_l.3
 - copied unchanged from r235848, head/lib/libc/stdio/scanf_l.3
Modified:
  stable/9/lib/libc/stdio/Makefile.inc
Directory Properties:
  stable/9/lib/libc/   (props changed)

Modified: stable/9/lib/libc/stdio/Makefile.inc
==
--- stable/9/lib/libc/stdio/Makefile.incMon Jun  4 13:41:22 2012
(r236561)
+++ stable/9/lib/libc/stdio/Makefile.incMon Jun  4 14:11:49 2012
(r236562)
@@ -36,7 +36,8 @@ MAN+= fclose.3 ferror.3 fflush.3 fgetln.
fopen.3 fputs.3 \
fputws.3 fread.3 fseek.3 funopen.3 fwide.3 getc.3 \
getline.3 getwc.3 mktemp.3 \
-   printf.3 putc.3 putwc.3 remove.3 scanf.3 setbuf.3 stdio.3 tmpnam.3 \
+   printf.3 printf_l.3 putc.3 putwc.3 remove.3 scanf.3 scanf_l.3 setbuf.3 \
+   stdio.3 tmpnam.3 \
ungetc.3 ungetwc.3 wprintf.3 wscanf.3
 
 MLINKS+=fclose.3 fcloseall.3
@@ -63,11 +64,16 @@ MLINKS+=printf.3 asprintf.3 printf.3 dpr
printf.3 vasprintf.3 printf.3 vdprintf.3 \
printf.3 vfprintf.3 printf.3 vprintf.3 printf.3 vsnprintf.3 \
printf.3 vsprintf.3
+MLINKS+=printf_l.3 asprintf_l.3 printf_l.3 fprintf_l.3 printf_l.3 snprintf_l.3 
\
+   printf_l.3 sprintf_l.3 printf_l.3 vasprintf_l.3 printf_l.3 vfprintf_l.3 
\
+   printf_l.3 vprintf_l.3 printf_l.3 vsnprintf_l.3 printf_l.3 vsprintf_l.3
 MLINKS+=putc.3 fputc.3 putc.3 putc_unlocked.3 putc.3 putchar.3 \
putc.3 putchar_unlocked.3 putc.3 putw.3
 MLINKS+=putwc.3 fputwc.3 putwc.3 putwchar.3
 MLINKS+=scanf.3 fscanf.3 scanf.3 sscanf.3 scanf.3 vfscanf.3 scanf.3 vscanf.3 \
scanf.3 vsscanf.3
+MLINKS+=scanf_l.3 fscanf_l.3 scanf_l.3 sscanf_l.3 scanf_l.3 vfscanf_l.3 \
+   scanf_l.3 vscanf_l.3 scanf_l.3 vsscanf_l.3
 MLINKS+=setbuf.3 setbuffer.3 setbuf.3 setlinebuf.3 setbuf.3 setvbuf.3
 MLINKS+=tmpnam.3 tempnam.3 tmpnam.3 tmpfile.3
 MLINKS+=wprintf.3 fwprintf.3 wprintf.3 swprintf.3 \

Copied: stable/9/lib/libc/stdio/printf_l.3 (from r235848, 
head/lib/libc/stdio/printf_l.3)
==
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ stable/9/lib/libc/stdio/printf_l.3  Mon Jun  4 14:11:49 2012
(r236562, copy of r235848, head/lib/libc/stdio/printf_l.3)
@@ -0,0 +1,80 @@
+.\" Copyright (c) 2012 Isabell Long 
+.\" All rights reserved.
+.\"
+.\" Redistribution and use in source and binary forms, with or without
+.\" modification, are permitted provided that the following conditions
+.\" are met:
+.\" 1. Redistributions of source code must retain the above copyright
+.\"notice, this list of conditions and the following disclaimer.
+.\" 2. Redistributions in binary form must reproduce the above copyright
+.\"notice, this list of conditions and the following disclaimer in the
+.\"documentation and/or other materials provided with the distribution.
+.\"
+.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
+.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
+.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+.\" SUCH DAMAGE.
+.\"
+.\" $FreeBSD$
+.\"
+.Dd April 7, 2012
+.Dt PRINTF_L 3
+.Os
+.Sh NAME
+.Nm printf_l ,
+.Nm asprintf_l ,
+.Nm fprintf_l ,
+.Nm snprintf_l ,
+.Nm sprintf_l ,
+.Nm vasprintf_l ,
+.Nm vfprintf_l ,
+.Nm vprintf_l ,
+.Nm vsnprintf_l ,
+.Nm vsprintf_l
+.Nd formatted output conversion
+.Sh LIBRARY
+.Lb libc
+.Sh SYNOPSIS
+.In stdio.h
+.Ft int
+.Fn printf_l "locale_t loc" "const char * restrict format" "..."
+.Ft int
+.Fn asprintf_l "char **ret" "locale_t loc" "const char * format" "..."
+.Ft int
+.Fn fprintf_l "FILE * restrict stream" "locale_t loc" "const c

svn commit: r235848 - head/lib/libc/stdio

2012-05-23 Thread Isabell Long
Author: issyl0 (doc committer)
Date: Wed May 23 17:13:30 2012
New Revision: 235848
URL: http://svn.freebsd.org/changeset/base/235848

Log:
  Add two new locale-specific man pages:
  - libc/stdio/scanf_l.3
  - libc/stdio/printf_l.3
  
  Reviewed by:  theraven
  Approved by:  gabor (mentor)
  MFC after:5 days

Added:
  head/lib/libc/stdio/printf_l.3   (contents, props changed)
  head/lib/libc/stdio/scanf_l.3   (contents, props changed)
Modified:
  head/lib/libc/stdio/Makefile.inc

Modified: head/lib/libc/stdio/Makefile.inc
==
--- head/lib/libc/stdio/Makefile.incWed May 23 17:10:22 2012
(r235847)
+++ head/lib/libc/stdio/Makefile.incWed May 23 17:13:30 2012
(r235848)
@@ -36,7 +36,8 @@ MAN+= fclose.3 ferror.3 fflush.3 fgetln.
fopen.3 fputs.3 \
fputws.3 fread.3 fseek.3 funopen.3 fwide.3 getc.3 \
getline.3 getwc.3 mktemp.3 \
-   printf.3 putc.3 putwc.3 remove.3 scanf.3 setbuf.3 stdio.3 tmpnam.3 \
+   printf.3 printf_l.3 putc.3 putwc.3 remove.3 scanf.3 scanf_l.3 setbuf.3 \
+   stdio.3 tmpnam.3 \
ungetc.3 ungetwc.3 wprintf.3 wscanf.3
 
 MLINKS+=fclose.3 fcloseall.3
@@ -63,11 +64,16 @@ MLINKS+=printf.3 asprintf.3 printf.3 dpr
printf.3 vasprintf.3 printf.3 vdprintf.3 \
printf.3 vfprintf.3 printf.3 vprintf.3 printf.3 vsnprintf.3 \
printf.3 vsprintf.3
+MLINKS+=printf_l.3 asprintf_l.3 printf_l.3 fprintf_l.3 printf_l.3 snprintf_l.3 
\
+   printf_l.3 sprintf_l.3 printf_l.3 vasprintf_l.3 printf_l.3 vfprintf_l.3 
\
+   printf_l.3 vprintf_l.3 printf_l.3 vsnprintf_l.3 printf_l.3 vsprintf_l.3
 MLINKS+=putc.3 fputc.3 putc.3 putc_unlocked.3 putc.3 putchar.3 \
putc.3 putchar_unlocked.3 putc.3 putw.3
 MLINKS+=putwc.3 fputwc.3 putwc.3 putwchar.3
 MLINKS+=scanf.3 fscanf.3 scanf.3 sscanf.3 scanf.3 vfscanf.3 scanf.3 vscanf.3 \
scanf.3 vsscanf.3
+MLINKS+=scanf_l.3 fscanf_l.3 scanf_l.3 sscanf_l.3 scanf_l.3 vfscanf_l.3 \
+   scanf_l.3 vscanf_l.3 scanf_l.3 vsscanf_l.3
 MLINKS+=setbuf.3 setbuffer.3 setbuf.3 setlinebuf.3 setbuf.3 setvbuf.3
 MLINKS+=tmpnam.3 tempnam.3 tmpnam.3 tmpfile.3
 MLINKS+=wprintf.3 fwprintf.3 wprintf.3 swprintf.3 \

Added: head/lib/libc/stdio/printf_l.3
==
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ head/lib/libc/stdio/printf_l.3  Wed May 23 17:13:30 2012
(r235848)
@@ -0,0 +1,80 @@
+.\" Copyright (c) 2012 Isabell Long 
+.\" All rights reserved.
+.\"
+.\" Redistribution and use in source and binary forms, with or without
+.\" modification, are permitted provided that the following conditions
+.\" are met:
+.\" 1. Redistributions of source code must retain the above copyright
+.\"notice, this list of conditions and the following disclaimer.
+.\" 2. Redistributions in binary form must reproduce the above copyright
+.\"notice, this list of conditions and the following disclaimer in the
+.\"documentation and/or other materials provided with the distribution.
+.\"
+.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
+.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
+.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+.\" SUCH DAMAGE.
+.\"
+.\" $FreeBSD$
+.\"
+.Dd April 7, 2012
+.Dt PRINTF_L 3
+.Os
+.Sh NAME
+.Nm printf_l ,
+.Nm asprintf_l ,
+.Nm fprintf_l ,
+.Nm snprintf_l ,
+.Nm sprintf_l ,
+.Nm vasprintf_l ,
+.Nm vfprintf_l ,
+.Nm vprintf_l ,
+.Nm vsnprintf_l ,
+.Nm vsprintf_l
+.Nd formatted output conversion
+.Sh LIBRARY
+.Lb libc
+.Sh SYNOPSIS
+.In stdio.h
+.Ft int
+.Fn printf_l "locale_t loc" "const char * restrict format" "..."
+.Ft int
+.Fn asprintf_l "char **ret" "locale_t loc" "const char * format" "..."
+.Ft int
+.Fn fprintf_l "FILE * restrict stream" "locale_t loc" "const char * restrict 
format" "..."
+.Ft int
+.Fn snprintf_l "char * restrict str" "size_t size" "locale_t loc" "const char 
* restrict format" "..."
+.Ft int
+.Fn sprintf_l "char * restrict str" "loc

svn commit: r235061 - head/share/misc

2012-05-05 Thread Isabell Long
Author: issyl0 (doc committer)
Date: Sat May  5 16:50:12 2012
New Revision: 235061
URL: http://svn.freebsd.org/changeset/base/235061

Log:
  - Add my mentor/mentee relationship to committers-doc.dot.
  (where me = issyl0)
  
  Approved by:  gabor (mentor)

Modified:
  head/share/misc/committers-doc.dot

Modified: head/share/misc/committers-doc.dot
==
--- head/share/misc/committers-doc.dot  Sat May  5 16:41:17 2012
(r235060)
+++ head/share/misc/committers-doc.dot  Sat May  5 16:50:12 2012
(r235061)
@@ -60,6 +60,7 @@ ganbold [label="Ganbold Tsagaankhuu\ngan
 gavin [label="Gavin Atkinson\nga...@freebsd.org\n2011/07/18"]
 gjb [label="Glen Barber\n...@freebsd.org\n2010/09/01"]
 hrs [label="Hiroki Sato\n...@freebsd.org\n2000/07/06"]
+issyl0 [label="Isabell Long\niss...@freebsd.org\n2012/04/25"]
 jkois [label="Johann Kois\njk...@freebsd.org\n2004/11/11"]
 joel [label="Joel Dahl\nj...@freebsd.org\n2005/04/05"]
 keramida [label="Giorgos Keramidas\nkeram...@freebsd.org\n2001/10/12"]
@@ -107,6 +108,7 @@ delphij -> loader
 gabor -> pgj
 gabor -> manolis
 gabor -> taras
+gabor -> issyl0
 
 gjb -> wblock
 
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"