id: do print the AFS-specific nameless group ID (called a PAG)
[platform/upstream/coreutils.git] / src / c99-to-c89.diff
1 --- src/remove.c        2007-07-23 12:56:20.000000000 +0200
2 +++ src/remove.c        2007-07-23 13:03:12.000000000 +0200
3 @@ -264,9 +264,10 @@ pop_dir (Dirstack_state *ds)
4  {
5    size_t n_lengths = obstack_object_size (&ds->len_stack) / sizeof (size_t);
6    size_t *length = obstack_base (&ds->len_stack);
7 +  size_t top_len;
8
9    assert (n_lengths > 0);
10 -  size_t top_len = length[n_lengths - 1];
11 +  top_len = length[n_lengths - 1];
12    assert (top_len >= 2);
13
14    /* Pop the specified length of file name.  */
15 @@ -424,10 +425,11 @@ AD_stack_top (Dirstack_state const *ds)
16  static void
17  AD_stack_pop (Dirstack_state *ds)
18  {
19 +  struct AD_ent *top;
20    assert (0 < AD_stack_height (ds));
21
22    /* operate on Active_dir.  pop and free top entry */
23 -  struct AD_ent *top = AD_stack_top (ds);
24 +  top = AD_stack_top (ds);
25    if (top->unremovable)
26      hash_free (top->unremovable);
27    obstack_blank (&ds->Active_dir, -(int) sizeof (struct AD_ent));
28 @@ -836,14 +838,13 @@ prompt (int fd_cwd, Dirstack_state const
29  {
30    int write_protected = 0;
31    int dirent_type = *pdirent_type;
32 +  int wp_errno = 0;
33
34    *is_empty = T_UNKNOWN;
35
36    if (x->interactive == RMI_NEVER)
37      return RM_OK;
38
39 -  int wp_errno = 0;
40 -
41    if (!x->ignore_missing_files
42        && ((x->interactive == RMI_ALWAYS) || x->stdin_tty)
43        && dirent_type != DT_LNK)
44 @@ -891,6 +892,7 @@ prompt (int fd_cwd, Dirstack_state const
45             break;
46           }
47
48 +      {
49        char const *quoted_name = quote (full_filename (filename));
50
51        if (write_protected < 0)
52 @@ -930,6 +932,7 @@ prompt (int fd_cwd, Dirstack_state const
53                     : _("%s: remove %s %s? ")),
54                    program_name, file_type (sbuf), quoted_name);
55         }
56 +      }
57
58        if (!yesno ())
59         return RM_USER_DECLINED;
60 @@ -1549,6 +1552,7 @@ rm_1 (Dirstack_state *ds, char const *fi
61        return RM_ERROR;
62      }
63
64 +  {
65    struct stat st;
66    cache_stat_init (&st);
67    cycle_check_init (&ds->cycle_check_state);
68 @@ -1571,6 +1575,7 @@ rm_1 (Dirstack_state *ds, char const *fi
69    AD_push_initial (ds);
70    AD_INIT_OTHER_MEMBERS ();
71
72 +  {
73    enum RM_status status = remove_entry (AT_FDCWD, ds, filename,
74                                         DT_UNKNOWN, &st, x);
75    if (status == RM_NONEMPTY_DIR)
76 @@ -1589,6 +1594,8 @@ rm_1 (Dirstack_state *ds, char const *fi
77    ds_clear (ds);
78    return status;
79  }
80 +  }
81 +}
82
83  /* Remove all files and/or directories specified by N_FILES and FILE.
84     Apply the options in X.  */
85 diff -upr src/rm.c src/rm.c
86 --- src/rm.c    2007-07-23 12:56:20.000000000 +0200
87 +++ src/rm.c    2007-07-23 13:03:12.000000000 +0200
88 @@ -354,6 +354,7 @@ main (int argc, char **argv)
89                quote ("/"));
90      }
91
92 +  {
93    size_t n_files = argc - optind;
94    char const *const *file = (char const *const *) argv + optind;
95
96 @@ -367,7 +368,10 @@ main (int argc, char **argv)
97        if (!yesno ())
98         exit (EXIT_SUCCESS);
99      }
100 +  {
101    enum RM_status status = rm (n_files, file, &x);
102    assert (VALID_STATUS (status));
103    exit (status == RM_ERROR ? EXIT_FAILURE : EXIT_SUCCESS);
104 +  }
105 +  }
106  }
107 diff -upr src/seq.c src/seq.c
108 --- src/seq.c   2008-04-14 11:17:15.000000000 +0200
109 +++ src/seq.c   2008-04-14 11:26:57.000000000 +0200
110 @@ -166,6 +166,7 @@ scan_arg (const char *arg)
111                         : (decimal_point == arg                /* .#  -> 0.# */
112                            || ! ISDIGIT (decimal_point[-1]))); /* -.# -> 0.# */
113         }
114 +      {
115        char const *e = strchr (arg, 'e');
116        if (! e)
117         e = strchr (arg, 'E');
118 @@ -174,6 +175,7 @@ scan_arg (const char *arg)
119           long exponent = strtol (e + 1, NULL, 10);
120           ret.precision += exponent < 0 ? -exponent : 0;
121         }
122 +      }
123      }
124
125    return ret;
126 @@ -349,6 +351,7 @@ get_default_format (operand first, opera
127           size_t last_width = last.width + (prec - last.precision);
128           if (last.precision && prec == 0)
129             last_width--;  /* don't include space for '.' */
130 +         {
131           size_t width = MAX (first_width, last_width);
132           if (width <= INT_MAX)
133             {
134 @@ -356,6 +359,7 @@ get_default_format (operand first, opera
135               sprintf (format_buf, "%%0%d.%dLf", w, prec);
136               return format_buf;
137             }
138 +         }
139         }
140        else
141         {
142 @@ -444,6 +448,7 @@ main (int argc, char **argv)
143    if (format_str)
144      {
145        validate_format (format_str);
146 +      {
147        char const *f = long_double_format (format_str, &layout);
148        if (! f)
149         {
150 @@ -451,6 +456,7 @@ main (int argc, char **argv)
151           usage (EXIT_FAILURE);
152         }
153        format_str = f;
154 +      }
155      }
156
157    last = scan_arg (argv[optind++]);
158 diff -upr src/shred.c src/shred.c
159 --- src/shred.c 2007-07-23 12:56:20.000000000 +0200
160 +++ src/shred.c 2007-07-23 13:03:12.000000000 +0200
161 @@ -461,7 +461,7 @@ dopass (int fd, char const *qname, off_t
162                      out.  Thus, it shouldn't give up on bad blocks.  This
163                      code works because lim is always a multiple of
164                      SECTOR_SIZE, except at the end.  */
165 -                 verify (sizeof r % SECTOR_SIZE == 0);
166 +                 { verify (sizeof r % SECTOR_SIZE == 0); }
167                   if (errnum == EIO && 0 <= size && (soff | SECTOR_MASK) < lim)
168                     {
169                       size_t soff1 = (soff | SECTOR_MASK) + 1;