summaryrefslogtreecommitdiff
path: root/lib/util
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2021-04-11 21:43:51 +0200
committerJeremy Allison <jra@samba.org>2021-04-19 18:18:31 +0000
commit60602dda406fdc14186e85cae40d1cf2f598e4be (patch)
tree3e5a511e390e1b081f3b990d87c930e2f530315c /lib/util
parent8cdc09006f2759111b3ad8c300f800f6cebdeb4d (diff)
downloadsamba-60602dda406fdc14186e85cae40d1cf2f598e4be.tar.gz
lib: Fix nonempty line endings
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_tdb.c28
-rw-r--r--lib/util/util_tdb.h4
2 files changed, 16 insertions, 16 deletions
diff --git a/lib/util/util_tdb.c b/lib/util/util_tdb.c
index 7b57e83395d..976067efa66 100644
--- a/lib/util/util_tdb.c
+++ b/lib/util/util_tdb.c
@@ -1,4 +1,4 @@
-/*
+/*
Unix SMB/CIFS implementation.
tdb utility functions
@@ -10,12 +10,12 @@
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/>.
*/
@@ -89,7 +89,7 @@ TDB_DATA tdb_data_talloc_copy(TALLOC_CTX* mem_ctx, TDB_DATA data) {
int tdb_lock_bystring(struct tdb_context *tdb, const char *keyval)
{
TDB_DATA key = string_term_tdb_data(keyval);
-
+
return tdb_chainlock(tdb, key);
}
@@ -111,7 +111,7 @@ void tdb_unlock_bystring(struct tdb_context *tdb, const char *keyval)
int tdb_read_lock_bystring(struct tdb_context *tdb, const char *keyval)
{
TDB_DATA key = string_term_tdb_data(keyval);
-
+
return tdb_chainlock_read(tdb, key);
}
@@ -122,7 +122,7 @@ int tdb_read_lock_bystring(struct tdb_context *tdb, const char *keyval)
void tdb_read_unlock_bystring(struct tdb_context *tdb, const char *keyval)
{
TDB_DATA key = string_term_tdb_data(keyval);
-
+
tdb_chainunlock_read(tdb, key);
}
@@ -256,7 +256,7 @@ bool tdb_store_uint32(struct tdb_context *tdb, const char *keystr, uint32_t valu
int tdb_store_bystring(struct tdb_context *tdb, const char *keystr, TDB_DATA data, int flags)
{
TDB_DATA key = string_term_tdb_data(keystr);
-
+
return tdb_store(tdb, key, data, flags);
}
@@ -273,7 +273,7 @@ TDB_DATA tdb_fetch_bystring(struct tdb_context *tdb, const char *keystr)
}
/****************************************************************************
- Delete an entry using a null terminated string key.
+ Delete an entry using a null terminated string key.
****************************************************************************/
int tdb_delete_bystring(struct tdb_context *tdb, const char *keystr)
@@ -284,7 +284,7 @@ int tdb_delete_bystring(struct tdb_context *tdb, const char *keystr)
}
/****************************************************************************
- Atomic integer change. Returns old value. To create, set initial value in *oldval.
+ Atomic integer change. Returns old value. To create, set initial value in *oldval.
****************************************************************************/
int32_t tdb_change_int32_atomic(struct tdb_context *tdb, const char *keystr, int32_t *oldval, int32_t change_val)
@@ -301,7 +301,7 @@ int32_t tdb_change_int32_atomic(struct tdb_context *tdb, const char *keystr, int
/* but not because it didn't exist */
goto err_out;
}
-
+
/* Start with 'old' value */
val = *oldval;
@@ -312,7 +312,7 @@ int32_t tdb_change_int32_atomic(struct tdb_context *tdb, const char *keystr, int
/* Increment value for storage and return next time */
val += change_val;
-
+
if (tdb_store_int32(tdb, keystr, val) != 0)
goto err_out;
@@ -325,7 +325,7 @@ int32_t tdb_change_int32_atomic(struct tdb_context *tdb, const char *keystr, int
}
/****************************************************************************
- Atomic unsigned integer change. Returns old value. To create, set initial value in *oldval.
+ Atomic unsigned integer change. Returns old value. To create, set initial value in *oldval.
****************************************************************************/
bool tdb_change_uint32_atomic(struct tdb_context *tdb, const char *keystr, uint32_t *oldval, uint32_t change_val)
@@ -338,7 +338,7 @@ bool tdb_change_uint32_atomic(struct tdb_context *tdb, const char *keystr, uint3
if (!tdb_fetch_uint32(tdb, keystr, &val)) {
/* It failed */
- if (tdb_error(tdb) != TDB_ERR_NOEXIST) {
+ if (tdb_error(tdb) != TDB_ERR_NOEXIST) {
/* and not because it didn't exist */
goto err_out;
}
@@ -354,7 +354,7 @@ bool tdb_change_uint32_atomic(struct tdb_context *tdb, const char *keystr, uint3
/* get a new value to store */
val += change_val;
-
+
if (!tdb_store_uint32(tdb, keystr, val))
goto err_out;
diff --git a/lib/util/util_tdb.h b/lib/util/util_tdb.h
index 1e313c7acfb..1b03e4cec4a 100644
--- a/lib/util/util_tdb.h
+++ b/lib/util/util_tdb.h
@@ -98,12 +98,12 @@ TDB_DATA tdb_fetch_bystring(struct tdb_context *tdb, const char *keystr);
int tdb_delete_bystring(struct tdb_context *tdb, const char *keystr);
/****************************************************************************
- Atomic integer change. Returns old value. To create, set initial value in *oldval.
+ Atomic integer change. Returns old value. To create, set initial value in *oldval.
****************************************************************************/
int32_t tdb_change_int32_atomic(struct tdb_context *tdb, const char *keystr, int32_t *oldval, int32_t change_val);
/****************************************************************************
- Atomic unsigned integer change. Returns old value. To create, set initial value in *oldval.
+ Atomic unsigned integer change. Returns old value. To create, set initial value in *oldval.
****************************************************************************/
bool tdb_change_uint32_atomic(struct tdb_context *tdb, const char *keystr, uint32_t *oldval, uint32_t change_val);