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
931b3549
...
931b354984a74776ad68145d03c4d3ca6e73fd82
authored
2001-09-10 15:02:58 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Do not count deleted messages into the total number of lines output.
1 parent
4757badf
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
mail/z.c
mail/z.c
View file @
931b354
...
...
@@ -179,9 +179,10 @@ mail_z (int argc, char **argv)
realcursor
=
cursor
;
for
(
i
=
0
;
i
<
nlines
;
i
++
)
for
(
i
=
0
;
i
<
nlines
&&
cursor
<=
total
;
)
{
mail_from
(
0
,
NULL
);
if
(
mail_from
(
0
,
NULL
)
==
0
)
i
++
;
cursor
++
;
}
...
...
Please
register
or
sign in
to post a comment