diff options
author | Volker Lendecke <vl@samba.org> | 2010-01-23 13:33:10 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2010-01-23 14:35:37 +0100 |
commit | 8905b599b467f0595cf5874b7e36d9a650f8544a (patch) | |
tree | 7b03b168fabe2742d044923c6722072759a070cd /source3/librpc/ndr | |
parent | 4c548048c55ab3b7c79f5317281988b446c7fbf2 (diff) | |
download | samba-8905b599b467f0595cf5874b7e36d9a650f8544a.tar.gz samba-8905b599b467f0595cf5874b7e36d9a650f8544a.tar.bz2 samba-8905b599b467f0595cf5874b7e36d9a650f8544a.zip |
s3: Fix some nonempty blank lines
Diffstat (limited to 'source3/librpc/ndr')
-rw-r--r-- | source3/librpc/ndr/sid.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/source3/librpc/ndr/sid.c b/source3/librpc/ndr/sid.c index 252da85929..eb5c2c477d 100644 --- a/source3/librpc/ndr/sid.c +++ b/source3/librpc/ndr/sid.c @@ -4,17 +4,17 @@ libndr interface Copyright (C) Andrew Tridgell 2003 - + 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/>. */ @@ -29,7 +29,7 @@ char *dom_sid_string(TALLOC_CTX *mem_ctx, const struct dom_sid *sid) int i, ofs, maxlen; uint32_t ia; char *ret; - + if (!sid) { return talloc_strdup(mem_ctx, "(NULL SID)"); } @@ -54,6 +54,6 @@ char *dom_sid_string(TALLOC_CTX *mem_ctx, const struct dom_sid *sid) for (i = 0; i < sid->num_auths; i++) { ofs += snprintf(ret + ofs, maxlen - ofs, "-%lu", (unsigned long)sid->sub_auths[i]); } - + return ret; } |