Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
home:dirkmueller:acdc:sp5-rebuild
exfatprogs.31393
0007-fsck-add-a-option.patch
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File 0007-fsck-add-a-option.patch of Package exfatprogs.31393
From e7a2365393e8b65567bd0e483681493dd1b73126 Mon Sep 17 00:00:00 2001 From: Matthieu CASTET <castet.matthieu@free.fr> Date: Thu, 25 Feb 2021 17:13:31 +0100 Subject: [PATCH 7/9] fsck: add -a option This is for backwards compatibility. It does the same as -p. Signed-off-by: Matthieu CASTET <castet.matthieu@free.fr> (cherry picked from commit ec0934b8b45da91ea84322a57ade49a68594c259) Acked-by: David Disseldorp <ddiss@suse.de> --- fsck/fsck.c | 4 +++- manpages/fsck.exfat.8 | 5 +++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/fsck/fsck.c b/fsck/fsck.c index 2485d2e..46c8943 100644 --- a/fsck/fsck.c +++ b/fsck/fsck.c @@ -87,6 +87,7 @@ static void usage(char *name) fprintf(stderr, "\t-y | --repair-yes Repair without ask\n"); fprintf(stderr, "\t-n | --repair-no No repair\n"); fprintf(stderr, "\t-p | --repair-auto Repair automatically\n"); + fprintf(stderr, "\t-a Repair automatically\n"); fprintf(stderr, "\t-V | --version Show version\n"); fprintf(stderr, "\t-v | --verbose Print debug\n"); fprintf(stderr, "\t-h | --help Show help\n"); @@ -1465,7 +1466,7 @@ int main(int argc, char * const argv[]) exfat_err("failed to init locale/codeset\n"); opterr = 0; - while ((c = getopt_long(argc, argv, "rynpVvh", opts, NULL)) != EOF) { + while ((c = getopt_long(argc, argv, "arynpVvh", opts, NULL)) != EOF) { switch (c) { case 'n': if (ui.options & FSCK_OPTS_REPAIR_ALL) @@ -1482,6 +1483,7 @@ int main(int argc, char * const argv[]) usage(argv[0]); ui.options |= FSCK_OPTS_REPAIR_YES; break; + case 'a': case 'p': if (ui.options & FSCK_OPTS_REPAIR_ALL) usage(argv[0]); diff --git a/manpages/fsck.exfat.8 b/manpages/fsck.exfat.8 index b02a056..4ea8462 100644 --- a/manpages/fsck.exfat.8 +++ b/manpages/fsck.exfat.8 @@ -4,6 +4,8 @@ fsck.exfat \- check an exFAT filesystem .SH SYNOPSIS .B fsck.exfat [ +.B \-a +] [ .B \-n ] [ .B \-r @@ -24,6 +26,9 @@ depending on the options passed. .PP .SH OPTIONS .TP +.BI \-a +This option does the same thing as the -p option. It is provided for backwards compatibility only; it is suggested that people use -p option whenever possible. +.TP .BI \-n Check the filesystem but do not attempt to repair the filesystem. .TP -- 2.35.3
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor