summaryrefslogtreecommitdiff
path: root/user
diff options
context:
space:
mode:
authorIvan Zhakov <ivan@apache.org>2022-11-20 07:14:38 +0000
committerIvan Zhakov <ivan@apache.org>2022-11-20 07:14:38 +0000
commit4f9b76b6f2acc4030ce9ef164322514c5d0e761b (patch)
tree9b993b3753affcbf164056826f9d568d8760b3a1 /user
parent961caf5f46055483fa72ab02f5e8baa16c209e2f (diff)
downloadapr-4f9b76b6f2acc4030ce9ef164322514c5d0e761b.tar.gz
Remove trailing whitespaces in *.c.
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@1905414 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'user')
-rw-r--r--user/netware/groupinfo.c4
-rw-r--r--user/unix/groupinfo.c4
-rw-r--r--user/unix/userinfo.c4
-rw-r--r--user/win32/groupinfo.c12
-rw-r--r--user/win32/userinfo.c26
5 files changed, 25 insertions, 25 deletions
diff --git a/user/netware/groupinfo.c b/user/netware/groupinfo.c
index e7cfd9b26..deb330c3b 100644
--- a/user/netware/groupinfo.c
+++ b/user/netware/groupinfo.c
@@ -33,8 +33,8 @@ APR_DECLARE(apr_status_t) apr_gid_name_get(char **groupname, apr_gid_t groupid,
{
return APR_ENOTIMPL;
}
-
-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)
{
return APR_ENOTIMPL;
diff --git a/user/unix/groupinfo.c b/user/unix/groupinfo.c
index 7967219f8..78b686aa9 100644
--- a/user/unix/groupinfo.c
+++ b/user/unix/groupinfo.c
@@ -57,8 +57,8 @@ APR_DECLARE(apr_status_t) apr_gid_name_get(char **groupname, apr_gid_t groupid,
*groupname = apr_pstrdup(p, gr->gr_name);
return APR_SUCCESS;
}
-
-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)
{
struct group *gr;
diff --git a/user/unix/userinfo.c b/user/unix/userinfo.c
index 516445b56..6469a9553 100644
--- a/user/unix/userinfo.c
+++ b/user/unix/userinfo.c
@@ -94,7 +94,7 @@ APR_DECLARE(apr_status_t) apr_uid_current(apr_uid_t *uid,
{
*uid = getuid();
*gid = getgid();
-
+
return APR_SUCCESS;
}
@@ -107,7 +107,7 @@ APR_DECLARE(apr_status_t) apr_uid_get(apr_uid_t *uid, apr_gid_t *gid,
struct passwd pw;
char pwbuf[PWBUF_SIZE];
apr_status_t rv;
-
+
if ((rv = getpwnam_safe(username, &pw, pwbuf)) != APR_SUCCESS)
return rv;
diff --git a/user/win32/groupinfo.c b/user/win32/groupinfo.c
index 115e8e956..20061b48e 100644
--- a/user/win32/groupinfo.c
+++ b/user/win32/groupinfo.c
@@ -22,7 +22,7 @@
#include <sys/types.h>
#endif
-APR_DECLARE(apr_status_t) apr_gid_get(apr_gid_t *gid,
+APR_DECLARE(apr_status_t) apr_gid_get(apr_gid_t *gid,
const char *groupname, apr_pool_t *p)
{
SID_NAME_USE sidtype;
@@ -44,16 +44,16 @@ APR_DECLARE(apr_status_t) apr_gid_get(apr_gid_t *gid,
else {
domain = NULL;
}
- /* Get nothing on the first pass ... need to size the sid buffer
+ /* Get nothing on the first pass ... need to size the sid buffer
*/
- rv = LookupAccountName(domain, groupname, domain, &sidlen,
+ rv = LookupAccountName(domain, groupname, domain, &sidlen,
anydomain, &domlen, &sidtype);
if (sidlen) {
/* Give it back on the second pass
*/
*gid = apr_palloc(p, sidlen);
domlen = sizeof(anydomain);
- rv = LookupAccountName(domain, groupname, *gid, &sidlen,
+ rv = LookupAccountName(domain, groupname, *gid, &sidlen,
anydomain, &domlen, &sidtype);
}
if (!sidlen || !rv) {
@@ -71,13 +71,13 @@ APR_DECLARE(apr_status_t) apr_gid_name_get(char **groupname, apr_gid_t groupid,
return APR_EINVAL;
if (!LookupAccountSid(NULL, groupid, name, &cbname, domain, &cbdomain, &type))
return apr_get_os_error();
- if (type != SidTypeGroup && type != SidTypeWellKnownGroup
+ if (type != SidTypeGroup && type != SidTypeWellKnownGroup
&& type != SidTypeAlias)
return APR_EINVAL;
*groupname = apr_pstrdup(p, name);
return APR_SUCCESS;
}
-
+
APR_DECLARE(apr_status_t) apr_gid_compare(apr_gid_t left, apr_gid_t right)
{
if (!left || !right)
diff --git a/user/win32/userinfo.c b/user/win32/userinfo.c
index 894da40f1..038a56808 100644
--- a/user/win32/userinfo.c
+++ b/user/win32/userinfo.c
@@ -36,7 +36,7 @@ static void get_sid_string(char *buf, apr_size_t blen, apr_uid_t id)
DWORD sa;
int slen;
- /* Determine authority values (these is a big-endian value,
+ /* Determine authority values (these is a big-endian value,
* and NT records the value as hex if the value is > 2^32.)
*/
psia = GetSidIdentifierAuthority(id);
@@ -58,13 +58,13 @@ static void get_sid_string(char *buf, apr_size_t blen, apr_uid_t id)
slen += apr_snprintf(buf + slen, blen - slen, "-%lu",
*GetSidSubAuthority(id, sa));
}
-}
+}
/* Query the ProfileImagePath from the version-specific branch, where the
* regkey uses the user's name on 9x, and user's sid string on NT.
*/
-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)
{
apr_status_t rv;
@@ -77,7 +77,7 @@ APR_DECLARE(apr_status_t) apr_uid_homepath_get(char **dirname,
if (apr_os_level >= APR_WIN_NT) {
apr_uid_t uid;
apr_gid_t gid;
-
+
if ((rv = apr_uid_get(&uid, &gid, username, p)) != APR_SUCCESS)
return rv;
@@ -93,7 +93,7 @@ APR_DECLARE(apr_status_t) apr_uid_homepath_get(char **dirname,
apr_cpystrn(regkey + keylen, username, sizeof(regkey) - keylen);
}
- if ((rv = RegOpenKeyEx(HKEY_LOCAL_MACHINE, regkey, 0,
+ if ((rv = RegOpenKeyEx(HKEY_LOCAL_MACHINE, regkey, 0,
KEY_QUERY_VALUE, &key)) != ERROR_SUCCESS)
return APR_FROM_OS_ERROR(rv);
@@ -105,7 +105,7 @@ APR_DECLARE(apr_status_t) apr_uid_homepath_get(char **dirname,
return APR_FROM_OS_ERROR(rv);
if (type == REG_SZ) {
char retdir[MAX_PATH];
- if ((rv = unicode_to_utf8_path(retdir, sizeof(retdir),
+ if ((rv = unicode_to_utf8_path(retdir, sizeof(retdir),
(apr_wchar_t*)regkey)) != APR_SUCCESS)
return rv;
*dirname = apr_pstrdup(p, retdir);
@@ -113,7 +113,7 @@ APR_DECLARE(apr_status_t) apr_uid_homepath_get(char **dirname,
else if (type == REG_EXPAND_SZ) {
apr_wchar_t path[MAX_PATH];
char retdir[MAX_PATH];
- ExpandEnvironmentStringsW((apr_wchar_t*)regkey, path,
+ ExpandEnvironmentStringsW((apr_wchar_t*)regkey, path,
sizeof(path) / 2);
if ((rv = unicode_to_utf8_path(retdir, sizeof(retdir), path))
!= APR_SUCCESS)
@@ -156,7 +156,7 @@ APR_DECLARE(apr_status_t) apr_uid_current(apr_uid_t *uid,
}
if (!GetTokenInformation(threadtok, TokenPrimaryGroup, NULL, 0, &needed)
- && (GetLastError() == ERROR_INSUFFICIENT_BUFFER)
+ && (GetLastError() == ERROR_INSUFFICIENT_BUFFER)
&& (grp = apr_palloc(p, needed))
&& GetTokenInformation(threadtok, TokenPrimaryGroup, grp, needed, &needed)) {
*gid = grp->PrimaryGroup;
@@ -194,16 +194,16 @@ APR_DECLARE(apr_status_t) apr_uid_get(apr_uid_t *uid, apr_gid_t *gid,
else {
domain = NULL;
}
- /* Get nothing on the first pass ... need to size the sid buffer
+ /* Get nothing on the first pass ... need to size the sid buffer
*/
- rv = LookupAccountName(domain, username, domain, &sidlen,
+ rv = LookupAccountName(domain, username, domain, &sidlen,
anydomain, &domlen, &sidtype);
if (sidlen) {
/* Give it back on the second pass
*/
*uid = apr_palloc(p, sidlen);
domlen = sizeof(anydomain);
- rv = LookupAccountName(domain, username, *uid, &sidlen,
+ rv = LookupAccountName(domain, username, *uid, &sidlen,
anydomain, &domlen, &sidtype);
}
if (!sidlen || !rv) {
@@ -230,7 +230,7 @@ APR_DECLARE(apr_status_t) apr_uid_name_get(char **username, apr_uid_t userid,
*username = apr_pstrdup(p, name);
return APR_SUCCESS;
}
-
+
APR_DECLARE(apr_status_t) apr_uid_compare(apr_uid_t left, apr_uid_t right)
{
if (!left || !right)