diff options
author | peter <peter@FreeBSD.org> | 2014-08-12 01:40:11 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2014-08-12 01:40:11 +0000 |
commit | 72d63a715ab3bb85109696154deb9b90d0495852 (patch) | |
tree | ce225c894795f3e26aadf9170baf8fd0556c18d2 /contrib/apr/include/apr_lib.h | |
parent | d307c6d3b7fc94a241aab28f56b9e92a10d98bee (diff) | |
download | FreeBSD-src-72d63a715ab3bb85109696154deb9b90d0495852.zip FreeBSD-src-72d63a715ab3bb85109696154deb9b90d0495852.tar.gz |
MFC r266728,266731,266735,266736,268135,268960,269833
Update apr 1.4.8 -> 1.5.1
Update apr-util 1.5.2 -> 1.5.3
Update serf 1.3.4 -> 1.3.7
Update svnlite 1.8.8 -> 1.8.10
Deal with svnlite.1 manpage.
Diffstat (limited to 'contrib/apr/include/apr_lib.h')
-rw-r--r-- | contrib/apr/include/apr_lib.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/contrib/apr/include/apr_lib.h b/contrib/apr/include/apr_lib.h index 8c0fea7..466e818 100644 --- a/contrib/apr/include/apr_lib.h +++ b/contrib/apr/include/apr_lib.h @@ -111,19 +111,19 @@ APR_DECLARE(const char *) apr_filepath_name_get(const char *pathname); * <PRE> * The extensions are: * - * %%pA takes a struct in_addr *, and prints it as a.b.c.d - * %%pI takes an apr_sockaddr_t * and prints it as a.b.c.d:port or - * [ipv6-address]:port - * %%pT takes an apr_os_thread_t * and prints it in decimal - * ('0' is printed if !APR_HAS_THREADS) - * %%pt takes an apr_os_thread_t * and prints it in hexadecimal - * ('0' is printed if !APR_HAS_THREADS) - * %%pm takes an apr_status_t * and prints the appropriate error - * string (from apr_strerror) corresponding to that error code. - * %%pp takes a void * and outputs it in hex - * %%pB takes a apr_uint32_t * as bytes and outputs it's apr_strfsize - * %%pF same as above, but takes a apr_off_t * - * %%pS same as above, but takes a apr_size_t * + * - %%pA takes a struct in_addr *, and prints it as a.b.c.d + * - %%pI takes an apr_sockaddr_t * and prints it as a.b.c.d:port or + * \[ipv6-address\]:port + * - %%pT takes an apr_os_thread_t * and prints it in decimal + * ('0' is printed if !APR_HAS_THREADS) + * - %%pt takes an apr_os_thread_t * and prints it in hexadecimal + * ('0' is printed if !APR_HAS_THREADS) + * - %%pm takes an apr_status_t * and prints the appropriate error + * string (from apr_strerror) corresponding to that error code. + * - %%pp takes a void * and outputs it in hex + * - %%pB takes a apr_uint32_t * as bytes and outputs it's apr_strfsize + * - %%pF same as above, but takes a apr_off_t * + * - %%pS same as above, but takes a apr_size_t * * * %%pA, %%pI, %%pT, %%pp are available from APR 1.0.0 onwards (and in 0.9.x). * %%pt is only available from APR 1.2.0 onwards. |