]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
lib: Fix whitespace
authorVolker Lendecke <vl@samba.org>
Thu, 16 Oct 2025 10:54:14 +0000 (12:54 +0200)
committerVolker Lendecke <vl@samba.org>
Mon, 10 Nov 2025 13:29:30 +0000 (13:29 +0000)
Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Anoop C S <anoopcs@samba.org>
lib/util/util_pw.c

index 8035de4392c372368d3d01dab82180a5d5a9b8cc..398932a9ec5a69a2ddcaf1f9dfc16a5c8a09b7e6 100644 (file)
@@ -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 <http://www.gnu.org/licenses/>.
 */
@@ -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) {