]> git.ipfire.org Git - thirdparty/tar.git/commitdiff
maint: omit space between "*" and "p"
authorPaul Eggert <eggert@cs.ucla.edu>
Thu, 1 Aug 2024 14:17:32 +0000 (07:17 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Sun, 4 Aug 2024 08:41:43 +0000 (01:41 -0700)
src/common.h
src/names.c
src/xattrs.c

index e0528fd509f10bbc7006e3440d9c0aa55747fb1e..ba4a4f7d86c4e6741f6656dd69e949101b505d60 100644 (file)
@@ -513,8 +513,8 @@ union block *start_header (struct tar_stat_info *st);
 void finish_header (struct tar_stat_info *st, union block *header,
                    off_t block_ordinal);
 void simple_finish_header (union block *header);
-union block * write_extended (bool global, struct tar_stat_info *st,
-                             union block *old_header);
+union block *write_extended (bool global, struct tar_stat_info *st,
+                            union block *old_header);
 union block *start_private_header (const char *name, size_t size, time_t t);
 void write_eot (void);
 void check_links (void);
index 388044b91904b03cebc65595b52ec54320035e09..03d1a12e6c7e838faa4dd3292a8264ed0d5a04b1 100644 (file)
@@ -250,7 +250,7 @@ static int include_anchored = EXCLUDE_ANCHORED;
   | matching_flags                                                 \
   | recursion_option)
 \f
-static char const * const vcs_file_table[] = {
+static char const *const vcs_file_table[] = {
   /* CVS: */
   "CVS",
   ".cvsignore",
@@ -284,7 +284,7 @@ static char const * const vcs_file_table[] = {
   NULL
 };
 
-static char const * const backup_file_table[] = {
+static char const *const backup_file_table[] = {
   ".#*",
   "*~",
   "#*#",
@@ -292,7 +292,7 @@ static char const * const backup_file_table[] = {
 };
 
 static void
-add_exclude_array (char const * const * fv, int opts)
+add_exclude_array (char const *const *fv, int opts)
 {
   int i;
 
index c72924e7448d158722b69b3c45d6e09717b0fea4..d99947c02a5ff147536dc9f6e5562bc5bef9b2af 100644 (file)
@@ -352,7 +352,7 @@ xattrs_acls_cleanup (char *val, size_t *plen)
 
 static void
 acls_get_text (int parentfd, const char *file_name, acl_type_t type,
-              char **ret_ptr, size_t * ret_len)
+              char **ret_ptr, size_t *ret_len)
 {
   char *val = NULL;
   acl_t acl;
@@ -403,7 +403,7 @@ xattrs__acls_get_a (int parentfd, const char *file_name,
 /* "system.posix_acl_default" */
 static void
 xattrs__acls_get_d (int parentfd, char const *file_name,
-                    char **ret_ptr, size_t * ret_len)
+                    char **ret_ptr, size_t *ret_len)
 {
   acls_get_text (parentfd, file_name, ACL_TYPE_DEFAULT, ret_ptr, ret_len);
 }