summaryrefslogtreecommitdiffstats
path: root/source3/winbindd/idmap_util.c
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2008-07-11 17:45:16 +0200
committerVolker Lendecke <vl@samba.org>2008-07-11 17:53:25 +0200
commit0439d4ba61e1d9380e160a16f3c301fdb0354523 (patch)
treec81db2807fb6ba2ca0039a129d6d26f81a89b0f3 /source3/winbindd/idmap_util.c
parentf7ee7d2fe96658aa102e94a7606ca8c1c52cae25 (diff)
downloadsamba-0439d4ba61e1d9380e160a16f3c301fdb0354523.tar.gz
samba-0439d4ba61e1d9380e160a16f3c301fdb0354523.tar.xz
samba-0439d4ba61e1d9380e160a16f3c301fdb0354523.zip
Revert "Fix nonempty whitespace only lines"
This reverts commit cc77db2acbc35cea58576f1e28c7a760a5e31609. (This used to be commit ed5b516c2027d78011cdaa7cbbc01bb01e766381)
Diffstat (limited to 'source3/winbindd/idmap_util.c')
-rw-r--r--source3/winbindd/idmap_util.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/source3/winbindd/idmap_util.c b/source3/winbindd/idmap_util.c
index 78f4d13ec1e..0d24070dd67 100644
--- a/source3/winbindd/idmap_util.c
+++ b/source3/winbindd/idmap_util.c
@@ -41,7 +41,7 @@ NTSTATUS idmap_uid_to_sid(DOM_SID *sid, uid_t uid)
maps[0] = &map;
maps[1] = NULL;
-
+
ret = idmap_unixids_to_sids(maps);
if ( ! NT_STATUS_IS_OK(ret)) {
DEBUG(10, ("error mapping uid [%lu]\n", (unsigned long)uid));
@@ -75,7 +75,7 @@ NTSTATUS idmap_gid_to_sid(DOM_SID *sid, gid_t gid)
maps[0] = &map;
maps[1] = NULL;
-
+
ret = idmap_unixids_to_sids(maps);
if ( ! NT_STATUS_IS_OK(ret)) {
DEBUG(10, ("error mapping gid [%lu]\n", (unsigned long)gid));
@@ -105,10 +105,10 @@ NTSTATUS idmap_sid_to_uid(DOM_SID *sid, uid_t *uid)
map.sid = sid;
map.xid.type = ID_TYPE_UID;
-
+
maps[0] = &map;
maps[1] = NULL;
-
+
ret = idmap_sids_to_unixids(maps);
if ( ! NT_STATUS_IS_OK(ret)) {
DEBUG(10, ("error mapping sid [%s] to uid\n",
@@ -145,10 +145,10 @@ NTSTATUS idmap_sid_to_gid(DOM_SID *sid, gid_t *gid)
map.sid = sid;
map.xid.type = ID_TYPE_GID;
-
+
maps[0] = &map;
maps[1] = NULL;
-
+
ret = idmap_sids_to_unixids(maps);
if ( ! NT_STATUS_IS_OK(ret)) {
DEBUG(10, ("error mapping sid [%s] to gid\n",