summaryrefslogtreecommitdiff
path: root/include/apr_user.h
diff options
context:
space:
mode:
authorIvan Zhakov <ivan@apache.org>2022-11-19 16:12:13 +0000
committerIvan Zhakov <ivan@apache.org>2022-11-19 16:12:13 +0000
commitddf6aa4327df4eee8b481a222c2635ba000471c3 (patch)
tree0061d19699468e5d7a642b0e3a3ef9d685f88d12 /include/apr_user.h
parent8f3d73a1f9e996148291f1adb9889d5cc882a1c1 (diff)
downloadapr-ddf6aa4327df4eee8b481a222c2635ba000471c3.tar.gz
Remove trailing whitespaces.
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@1905407 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/apr_user.h')
-rw-r--r--include/apr_user.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/include/apr_user.h b/include/apr_user.h
index 0e0a3ac5a..4b850262c 100644
--- a/include/apr_user.h
+++ b/include/apr_user.h
@@ -19,7 +19,7 @@
/**
* @file apr_user.h
- * @brief APR User ID Services
+ * @brief APR User ID Services
*/
#include "apr.h"
@@ -32,7 +32,7 @@ extern "C" {
/**
* @defgroup apr_user User and Group ID Services
- * @ingroup APR
+ * @ingroup APR
* @{
*/
@@ -54,7 +54,7 @@ typedef PSID apr_gid_t;
typedef gid_t apr_gid_t;
#endif
-#if APR_HAS_USER
+#if APR_HAS_USER
/**
* Get the userid (and groupid) of the calling process
@@ -95,8 +95,8 @@ APR_DECLARE(apr_status_t) apr_uid_get(apr_uid_t *userid, apr_gid_t *groupid,
* @param p The pool from which to allocate the string
* @remark This function is available only if APR_HAS_USER is defined.
*/
-APR_DECLARE(apr_status_t) apr_uid_homepath_get(char **dirname,
- const char *username,
+APR_DECLARE(apr_status_t) apr_uid_homepath_get(char **dirname,
+ const char *username,
apr_pool_t *p);
/**
@@ -120,7 +120,7 @@ APR_DECLARE(apr_status_t) apr_uid_compare(apr_uid_t left, apr_uid_t right);
* @param p The pool from which to allocate the string
* @remark This function is available only if APR_HAS_USER is defined.
*/
-APR_DECLARE(apr_status_t) apr_gid_name_get(char **groupname,
+APR_DECLARE(apr_status_t) apr_gid_name_get(char **groupname,
apr_gid_t groupid, apr_pool_t *p);
/**
@@ -130,7 +130,7 @@ APR_DECLARE(apr_status_t) apr_gid_name_get(char **groupname,
* @param p The pool from which to allocate the string
* @remark This function is available only if APR_HAS_USER is defined.
*/
-APR_DECLARE(apr_status_t) apr_gid_get(apr_gid_t *groupid,
+APR_DECLARE(apr_status_t) apr_gid_get(apr_gid_t *groupid,
const char *groupname, apr_pool_t *p);
/**