Skip to content

Commit

Permalink
Fix overlayfs-tools build
Browse files Browse the repository at this point in the history
Signed-off-by: Ethan Dye <mrtops03@gmail.com>
  • Loading branch information
ecdye committed Nov 8, 2021
1 parent 7ea4706 commit dae5602
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions overlayfs-tools/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@

#define STRING_BUFFER_SIZE PATH_MAX * 2

// currently, brief and verbose are mutually exclusive
bool verbose;
bool brief;
bool yes;

void print_help(const char *program) {
printf("Usage: %s command options\n", program);
puts("");
Expand Down Expand Up @@ -124,11 +129,6 @@ bool check_xattr_trusted(const char *upper) {
return ret;
}

// currently, brief and verbose are mutually exclusive
bool verbose;
bool brief;
bool yes;

int main(int argc, char *argv[]) {

char *lower = NULL;
Expand Down

0 comments on commit dae5602

Please sign in to comment.