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
ae7d6e4d
...
ae7d6e4d1168d310bc429f6003a5928c2aa40169
authored
2002-02-27 11:56:27 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Do not handle '%name' separately: mailbox_open_default now does it.
1 parent
659509fa
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
11 deletions
mail/file.c
mail/file.c
View file @
ae7d6e4
...
...
@@ -51,21 +51,11 @@ mail_file (int argc, char **argv)
switch
(
argv
[
1
][
0
])
{
case
'%'
:
if
(
argv
[
1
][
1
]
==
0
)
name
=
NULL
;
/* our system mailbox */
else
{
util_error
(
"%%user not supported"
);
return
1
;
}
break
;
case
'#'
:
if
(
!
prev_name
)
{
util_error
(
"No previous file"
);
return
1
;
return
1
;
}
name
=
prev_name
;
break
;
...
...
Please
register
or
sign in
to post a comment