lib/replace/xattr.c: typo fixes
authorBjörn Jacke <bj@sernet.de>
Sat, 26 Oct 2019 00:41:09 +0000 (02:41 +0200)
committerBjoern Jacke <bjacke@samba.org>
Thu, 31 Oct 2019 00:43:36 +0000 (00:43 +0000)
Signed-off-by: Bjoern Jacke <bjacke@samba.org>
Reviewed-by: Martin Schwenke <martin@meltin.net>
lib/replace/xattr.c

index d07dd2cc1e352111a3e1c1273dacb5cf8ca814c6..01215f1a9f39d71cf910a7148271643a9b0f163f 100644 (file)
@@ -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) {