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
7d482dfb
...
7d482dfb9b05e65a5ec8acdcdcd7acbdabc79e10
authored
2002-03-14 02:31:19 +0000
by
Alain Magloire
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
The return value should be 0 for next and previous.
1 parent
fc419399
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
2 deletions
ChangeLog
mail/next.c
mail/previous.c
ChangeLog
View file @
7d482df
...
...
@@ -4,6 +4,8 @@
by
using
(
const
char
*
name
)
in
the
argument
.
*
pop3d
/
pop3d
.
c
:
The
variable
state
was
already
use
as
a
global
,
use
"astate"
in
function
pop3_parse_opt
().
*
mail
/
next
.
c
:
Wrong
return
value
;
*
mail
/
previous
.
c
:
Wrong
return
value
;
2002
-
03
-
13
Alain
Magloire
...
...
mail/next.c
View file @
7d482df
...
...
@@ -39,5 +39,5 @@ mail_next (int argc, char **argv)
msgset_free
(
list
);
}
util_do_command
(
"print"
);
return
1
;
return
0
;
}
...
...
mail/previous.c
View file @
7d482df
...
...
@@ -40,5 +40,5 @@ mail_previous (int argc, char **argv)
msgset_free
(
list
);
}
util_do_command
(
"print"
);
return
1
;
return
0
;
}
...
...
Please
register
or
sign in
to post a comment