From 1416ad9d66597543539ebdf57d01b4b9877aaa5e Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Thu, 16 Oct 2025 12:54:14 +0200 Subject: [PATCH] lib: Fix whitespace Signed-off-by: Volker Lendecke Reviewed-by: Anoop C S --- lib/util/util_pw.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/lib/util/util_pw.c b/lib/util/util_pw.c index 8035de4392c..398932a9ec5 100644 --- a/lib/util/util_pw.c +++ b/lib/util/util_pw.c @@ -1,4 +1,4 @@ -/* +/* Unix SMB/CIFS implementation. Safe versions of getpw* calls @@ -9,17 +9,17 @@ Copyright (C) Timur Bakeyev 2005 Copyright (C) Bjoern Jacke 2006-2007 - + 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 . */ @@ -63,7 +63,7 @@ struct passwd *getpwnam_alloc(TALLOC_CTX *mem_ctx, const char *name) struct passwd *temp; temp = getpwnam(name); - + if (!temp) { #if 0 if (errno == ENOMEM) { @@ -85,7 +85,7 @@ struct passwd *getpwuid_alloc(TALLOC_CTX *mem_ctx, uid_t uid) struct passwd *temp; temp = getpwuid(uid); - + if (!temp) { #if 0 if (errno == ENOMEM) { -- 2.47.3