Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
4e696145
...
4e696145852297637f03bc345416f05d9edaa277
authored
2002-12-04 23:27:26 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(main): Do not print duplicate --link arguments.
1 parent
7fa046bc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
3 deletions
mailbox/mailutils-config.c
mailbox/mailutils-config.c
View file @
4e69614
...
...
@@ -156,10 +156,15 @@ main (int argc, char **argv)
entry
[
i
]
=
entry
[
j
];
entry
[
j
]
=
tmp
;
}
}
for
(
j
=
0
;
j
<
n
;
j
++
)
printf
(
"%s"
,
entry
[
j
].
ptr
);
{
if
(
j
>
0
&&
entry
[
j
].
level
==
entry
[
j
-
1
].
level
)
continue
;
printf
(
"%s"
,
entry
[
j
].
ptr
);
}
printf
(
"
\n
"
);
return
0
;
}
...
...
@@ -191,8 +196,7 @@ main (int argc, char **argv)
return
0
;
}
argp_help
(
&
argp
,
stdout
,
ARGP_HELP_USAGE
,
program_invocation_short_name
);
argp_help
(
&
argp
,
stdout
,
ARGP_HELP_USAGE
,
program_invocation_short_name
);
return
0
;
}
...
...
Please
register
or
sign in
to post a comment