From: Björn Jacke Date: Sat, 26 Oct 2019 00:41:09 +0000 (+0200) Subject: lib/replace/xattr.c: typo fixes X-Git-Tag: talloc-2.3.1~190 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ba1887d37422f39bd36d0ab17dd1ef8efa56cb63;p=thirdparty%2Fsamba.git lib/replace/xattr.c: typo fixes Signed-off-by: Bjoern Jacke Reviewed-by: Martin Schwenke --- diff --git a/lib/replace/xattr.c b/lib/replace/xattr.c index d07dd2cc1e3..01215f1a9f3 100644 --- a/lib/replace/xattr.c +++ b/lib/replace/xattr.c @@ -53,7 +53,7 @@ ssize_t rep_getxattr (const char *path, const char *name, void *value, size_t si return getxattr(path, name, value, size); #else -/* So that we do not recursivly call this function */ +/* So that we do not recursively call this function */ #undef getxattr int options = 0; return getxattr(path, name, value, size, 0, options); @@ -127,7 +127,7 @@ ssize_t rep_fgetxattr (int filedes, const char *name, void *value, size_t size) return fgetxattr(filedes, name, value, size); #else -/* So that we do not recursivly call this function */ +/* So that we do not recursively call this function */ #undef fgetxattr int options = 0; return fgetxattr(filedes, name, value, size, 0, options); @@ -353,7 +353,7 @@ ssize_t rep_listxattr (const char *path, char *list, size_t size) #ifndef XATTR_ADDITIONAL_OPTIONS return listxattr(path, list, size); #else -/* So that we do not recursivly call this function */ +/* So that we do not recursively call this function */ #undef listxattr int options = 0; return listxattr(path, list, size, options); @@ -386,7 +386,7 @@ ssize_t rep_flistxattr (int filedes, char *list, size_t size) #ifndef XATTR_ADDITIONAL_OPTIONS return flistxattr(filedes, list, size); #else -/* So that we do not recursivly call this function */ +/* So that we do not recursively call this function */ #undef flistxattr int options = 0; return flistxattr(filedes, list, size, options); @@ -419,7 +419,7 @@ int rep_removexattr (const char *path, const char *name) #ifndef XATTR_ADDITIONAL_OPTIONS return removexattr(path, name); #else -/* So that we do not recursivly call this function */ +/* So that we do not recursively call this function */ #undef removexattr int options = 0; return removexattr(path, name, options); @@ -469,7 +469,7 @@ int rep_fremovexattr (int filedes, const char *name) #ifndef XATTR_ADDITIONAL_OPTIONS return fremovexattr(filedes, name); #else -/* So that we do not recursivly call this function */ +/* So that we do not recursively call this function */ #undef fremovexattr int options = 0; return fremovexattr(filedes, name, options); @@ -526,7 +526,7 @@ int rep_setxattr (const char *path, const char *name, const void *value, size_t } return retval; #else -/* So that we do not recursivly call this function */ +/* So that we do not recursively call this function */ #undef setxattr retval = setxattr(path, name, value, size, 0, flags); if (retval < 0) { @@ -633,7 +633,7 @@ int rep_fsetxattr (int filedes, const char *name, const void *value, size_t size } return retval; #else -/* So that we do not recursivly call this function */ +/* So that we do not recursively call this function */ #undef fsetxattr retval = fsetxattr(filedes, name, value, size, 0, flags); if (retval < 0) {