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
c27b64ed
...
c27b64ed056be5e6006e6a1f0e40a71a8120c10f
authored
2003-06-11 10:03:38 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(store_handler): Fixed indentation.
1 parent
1e9a412d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
14 deletions
mh/mhn.c
mh/mhn.c
View file @
c27b64e
...
...
@@ -1586,24 +1586,24 @@ store_handler (message_t msg, msg_part_t part, char *type, char *encoding,
if
(
header_aget_value
(
hdr
,
MU_HEADER_CONTENT_DISPOSITION
,
&
val
)
==
0
)
{
if
(
argcv_get
(
val
,
"="
,
NULL
,
&
argc
,
&
argv
)
==
0
)
{
int
i
;
for
(
i
=
0
;
i
<
argc
;
i
++
)
if
(
argcv_get
(
val
,
"="
,
NULL
,
&
argc
,
&
argv
)
==
0
)
{
if
(
strcmp
(
argv
[
i
],
"filename"
)
==
0
&&
++
i
<
argc
&&
argv
[
i
][
0
]
==
'='
&&
++
i
<
argc
)
int
i
;
for
(
i
=
0
;
i
<
argc
;
i
++
)
{
name
=
normalize_path
(
dir
,
argv
[
i
]);
break
;
if
(
strcmp
(
argv
[
i
],
"filename"
)
==
0
&&
++
i
<
argc
&&
argv
[
i
][
0
]
==
'='
&&
++
i
<
argc
)
{
name
=
normalize_path
(
dir
,
argv
[
i
]);
break
;
}
}
argcv_free
(
argc
,
argv
);
}
argcv_free
(
argc
,
argv
);
}
free
(
val
);
free
(
val
);
}
if
(
!
name
...
...
Please
register
or
sign in
to post a comment