mount: code shrink
function old new delta append_mount_options 174 157 -17 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
parent
dbdf9e0ab1
commit
1b661122a8
@ -562,9 +562,9 @@ static void append_mount_options(char **oldopts, const char *newopts)
|
||||
// Do not insert options which are already there
|
||||
while (newopts[0]) {
|
||||
char *p;
|
||||
int len = strlen(newopts);
|
||||
p = strchr(newopts, ',');
|
||||
if (p) len = p - newopts;
|
||||
int len;
|
||||
|
||||
len = strchrnul(newopts, ',') - newopts;
|
||||
p = *oldopts;
|
||||
while (1) {
|
||||
if (!strncmp(p, newopts, len)
|
||||
@ -579,7 +579,7 @@ static void append_mount_options(char **oldopts, const char *newopts)
|
||||
*oldopts = p;
|
||||
skip:
|
||||
newopts += len;
|
||||
while (newopts[0] == ',') newopts++;
|
||||
while (*newopts == ',') newopts++;
|
||||
}
|
||||
} else {
|
||||
if (ENABLE_FEATURE_CLEAN_UP) free(*oldopts);
|
||||
|
Loading…
Reference in New Issue
Block a user