diff options
author | Volker Lendecke <vl@samba.org> | 2011-02-12 19:52:05 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2011-02-13 12:11:53 +0100 |
commit | 9331bc378d609941a1bdbe793e1cf3f12e1a61da (patch) | |
tree | 6d7cd7fbb3a2a8f2b18b4abee7d1ee9d36a42237 /source3 | |
parent | fe551d681586adde38d4a01230f494ce0dd87b2c (diff) | |
download | samba-9331bc378d609941a1bdbe793e1cf3f12e1a61da.tar.gz samba-9331bc378d609941a1bdbe793e1cf3f12e1a61da.tar.bz2 samba-9331bc378d609941a1bdbe793e1cf3f12e1a61da.zip |
s3: Fix some nonempty blank lines
Diffstat (limited to 'source3')
-rw-r--r-- | source3/passdb/pdb_compat.c | 12 | ||||
-rw-r--r-- | source3/winbindd/idmap_passdb.c | 8 |
2 files changed, 10 insertions, 10 deletions
diff --git a/source3/passdb/pdb_compat.c b/source3/passdb/pdb_compat.c index 387ee2a322..17a18bca8e 100644 --- a/source3/passdb/pdb_compat.c +++ b/source3/passdb/pdb_compat.c @@ -6,17 +6,17 @@ Copyright (C) Gerald (Jerry) Carter 2000-2001 Copyright (C) Andrew Bartlett 2001-2002 Copyright (C) Stefan (metze) Metzmacher 2002 - + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ @@ -34,7 +34,7 @@ uint32 pdb_get_user_rid (const struct samu *sampass) if (sampass) if (sid_peek_check_rid(get_global_sam_sid(), pdb_get_user_sid(sampass),&u_rid)) return u_rid; - + return (0); } @@ -52,7 +52,7 @@ bool pdb_set_user_sid_from_rid (struct samu *sampass, uint32 rid, enum pdb_value { struct dom_sid u_sid; const struct dom_sid *global_sam_sid; - + if (!sampass) return False; @@ -81,7 +81,7 @@ bool pdb_set_group_sid_from_rid (struct samu *sampass, uint32 grid, enum pdb_val if (!sampass) return False; - + if (!(global_sam_sid = get_global_sam_sid())) { DEBUG(1, ("pdb_set_user_sid_from_rid: Could not read global sam sid!\n")); return False; diff --git a/source3/winbindd/idmap_passdb.c b/source3/winbindd/idmap_passdb.c index ece1b42122..7f14b6bf38 100644 --- a/source3/winbindd/idmap_passdb.c +++ b/source3/winbindd/idmap_passdb.c @@ -4,17 +4,17 @@ idmap PASSDB backend Copyright (C) Simo Sorce 2006 - + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. - + This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. - + You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ @@ -77,7 +77,7 @@ static NTSTATUS idmap_pdb_sids_to_unixids(struct idmap_domain *dom, struct id_ma for (i = 0; ids[i]; i++) { enum lsa_SidType type; union unid_t id; - + if (pdb_sid_to_id(ids[i]->sid, &id, &type)) { switch (type) { case SID_NAME_USER: |