* src/c99-to-c89.diff: Update to have proper offsets.
[platform/upstream/coreutils.git] / src / c99-to-c89.diff
1 Index: src/remove.c
2 ===================================================================
3 RCS file: /fetish/cu/src/remove.c,v
4 retrieving revision 1.158
5 diff -u -p -u -r1.158 remove.c
6 --- src/remove.c        3 Sep 2006 02:54:51 -0000       1.158
7 +++ src/remove.c        6 Sep 2006 18:57:46 -0000
8 @@ -238,9 +238,10 @@ pop_dir (Dirstack_state *ds)
9  {
10    size_t n_lengths = obstack_object_size (&ds->len_stack) / sizeof (size_t);
11    size_t *length = obstack_base (&ds->len_stack);
12 +  size_t top_len;
13  
14    assert (n_lengths > 0);
15 -  size_t top_len = length[n_lengths - 1];
16 +  top_len = length[n_lengths - 1];
17    assert (top_len >= 2);
18  
19    /* Pop the specified length of file name.  */
20 @@ -372,10 +373,11 @@ AD_stack_top (Dirstack_state const *ds)
21  static void
22  AD_stack_pop (Dirstack_state *ds)
23  {
24 +  struct AD_ent *top;
25    assert (0 < AD_stack_height (ds));
26  
27    /* operate on Active_dir.  pop and free top entry */
28 -  struct AD_ent *top = AD_stack_top (ds);
29 +  top = AD_stack_top (ds);
30    if (top->unremovable)
31      hash_free (top->unremovable);
32    obstack_blank (&ds->Active_dir, -(int) sizeof (struct AD_ent));
33 @@ -542,6 +544,7 @@ AD_mark_helper (Hash_table **ht, char *f
34        if (*ht == NULL)
35         xalloc_die ();
36      }
37 +  {
38    void *ent = hash_insert (*ht, filename);
39    if (ent == NULL)
40      xalloc_die ();
41 @@ -550,7 +553,7 @@ AD_mark_helper (Hash_table **ht, char *f
42        if (ent != filename)
43         free (filename);
44      }
45 -
46 +  }
47  }
48  
49  /* Mark FILENAME (in current directory) as unremovable.  */
50 @@ -1090,6 +1093,7 @@ fd_to_subdirp (int fd_cwd, char const *f
51        return NULL;
52      }
53  
54 +  {
55    DIR *subdir_dirp = fdopendir (fd_sub);
56    if (subdir_dirp == NULL)
57      {
58 @@ -1098,6 +1102,7 @@ fd_to_subdirp (int fd_cwd, char const *f
59      }
60  
61    return subdir_dirp;
62 +  }
63  }
64  
65  /* Remove entries in the directory open on DIRP
66 @@ -1334,9 +1339,10 @@ remove_dir (int fd_cwd, Dirstack_state *
67         /* The name of the directory that we have just processed,
68            nominally removing all of its contents.  */
69         char *empty_dir;
70 +       int fd;
71  
72         AD_pop_and_chdir (&dirp, ds, &empty_dir);
73 -       int fd = (dirp != NULL ? dirfd (dirp) : AT_FDCWD);
74 +       fd = (dirp != NULL ? dirfd (dirp) : AT_FDCWD);
75         assert (dirp != NULL || AD_stack_height (ds) == 1);
76  
77         /* Try to remove EMPTY_DIR only if remove_cwd_entries succeeded.  */
78 @@ -1434,6 +1440,7 @@ rm_1 (Dirstack_state *ds, char const *fi
79    AD_push_initial (ds);
80    AD_INIT_OTHER_MEMBERS ();
81  
82 +  {
83    int fd_cwd = AT_FDCWD;
84    enum RM_status status = remove_entry (fd_cwd, ds, filename, &st, x, NULL);
85    if (status == RM_NONEMPTY_DIR)
86 @@ -1452,6 +1459,7 @@ rm_1 (Dirstack_state *ds, char const *fi
87    ds_clear (ds);
88  
89    return status;
90 +  }
91  }
92  
93  /* Remove all files and/or directories specified by N_FILES and FILE.
94 @@ -1474,9 +1482,11 @@ rm (size_t n_files, char const *const *f
95         }
96  
97        cycle_check_init (&ds->cycle_check_state);
98 +      {
99        enum RM_status s = rm_1 (ds, file[i], x, &cwd_errno);
100        assert (VALID_STATUS (s));
101        UPDATE_STATUS (status, s);
102 +      }
103      }
104  
105    if (x->require_restore_cwd && cwd_errno)
106 Index: src/rm.c
107 ===================================================================
108 RCS file: /fetish/cu/src/rm.c,v
109 retrieving revision 1.140
110 diff -u -p -u -r1.140 rm.c
111 --- src/rm.c    3 Sep 2006 02:53:58 -0000       1.140
112 +++ src/rm.c    6 Sep 2006 18:57:46 -0000
113 @@ -357,8 +357,10 @@ main (int argc, char **argv)
114         if (!yesno ())
115           exit (EXIT_SUCCESS);
116        }
117 +   {
118      enum RM_status status = rm (n_files, file, &x);
119      assert (VALID_STATUS (status));
120      exit (status == RM_ERROR ? EXIT_FAILURE : EXIT_SUCCESS);
121 +   }
122    }
123  }