summaryrefslogtreecommitdiff
path: root/lib/util
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2023-03-03 18:48:25 +0100
committerJeremy Allison <jra@samba.org>2023-03-09 18:10:33 +0000
commit2ac2c055614c0aaa63b6c80a12d950d8e5d0cbf0 (patch)
treea33c577f19e587348e3ba782842eeaeef88d6da5 /lib/util
parent4d8a396c4c1e2687b624267007101879ca5e7210 (diff)
downloadsamba-2ac2c055614c0aaa63b6c80a12d950d8e5d0cbf0.tar.gz
lib: Fix whitespace
Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'lib/util')
-rw-r--r--lib/util/util_str.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/util/util_str.c b/lib/util/util_str.c
index 833eb754918..7c1d15dbeb0 100644
--- a/lib/util/util_str.c
+++ b/lib/util/util_str.c
@@ -1,22 +1,22 @@
-/*
+/*
Unix SMB/CIFS implementation.
Samba utility functions
-
+
Copyright (C) Andrew Tridgell 1992-2001
Copyright (C) Simo Sorce 2001-2002
Copyright (C) Martin Pool 2003
Copyright (C) James Peach 2005
-
+
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/>.
*/
@@ -59,7 +59,7 @@ _PUBLIC_ bool conv_str_bool(const char * str, bool * val)
}
/**
- * Convert a size specification like 16K into an integral number of bytes.
+ * Convert a size specification like 16K into an integral number of bytes.
**/
_PUBLIC_ bool conv_str_size_error(const char * str, uint64_t * val)
{
@@ -132,7 +132,7 @@ _PUBLIC_ bool strequal(const char *s1, const char *s2)
return true;
if (!s1 || !s2)
return false;
-
+
return strcasecmp_m(s1,s2) == 0;
}