summaryrefslogtreecommitdiff
path: root/lib/replace
diff options
context:
space:
mode:
authorAndreas Schneider <asn@samba.org>2023-04-13 12:52:52 +0200
committerAndreas Schneider <asn@cryptomilk.org>2023-04-14 05:25:33 +0000
commit9d42ba7661f46b7d76a7e4901c3752be43541548 (patch)
treebe81ec7b438c936de27a238619debd078987cc61 /lib/replace
parent53f0a292f8057a63ddee951058e380b43b9d2916 (diff)
downloadsamba-9d42ba7661f46b7d76a7e4901c3752be43541548.tar.gz
lib:replace: Remove trailing white spaces in xattr.c
Signed-off-by: Andreas Schneider <asn@samba.org> Reviewed-by: Joseph Sutton <josephsutton@catalyst.net.nz>
Diffstat (limited to 'lib/replace')
-rw-r--r--lib/replace/xattr.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/replace/xattr.c b/lib/replace/xattr.c
index 6d014a83a73..8c7b7308b97 100644
--- a/lib/replace/xattr.c
+++ b/lib/replace/xattr.c
@@ -1,4 +1,4 @@
-/*
+/*
Unix SMB/CIFS implementation.
replacement routines for xattr implementations
Copyright (C) Jeremy Allison 1998-2005
@@ -10,7 +10,7 @@
** NOTE! The following LGPL license applies to the replace
** library. This does NOT imply that all of Samba is released
** under the LGPL
-
+
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
@@ -196,7 +196,7 @@ static struct {
int space;
const char *name;
size_t len;
-}
+}
extattr[] = {
{ EXTATTR_NAMESPACE_SYSTEM, EXTATTR_PREFIX("system.") },
{ EXTATTR_NAMESPACE_USER, EXTATTR_PREFIX("user.") },
@@ -245,7 +245,7 @@ static ssize_t bsd_attr_list (int type, extattr_arg arg, char *list, size_t size
problem with the emulation.
*/
if(list == NULL) {
- /* Take the worse case of one char attribute names -
+ /* Take the worse case of one char attribute names -
two bytes per name plus one more for sanity.
*/
total_size += list_size + (list_size/2 + 1)*extattr[t].len;