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
0c966d73
...
0c966d733f3d5997ba54883bb5c367082f333baf
authored
2003-03-14 14:46:46 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(scan_addrs): Bugfix.
1 parent
c958b5b0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletions
mh/mh_whom.c
mh/mh_whom.c
View file @
0c966d7
...
...
@@ -56,7 +56,8 @@ scan_addrs (char *str, int isbcc)
address_t
addr
;
size_t
i
,
count
;
address_create
(
&
addr
,
str
);
if
(
address_create
(
&
addr
,
str
))
return
;
address_get_count
(
addr
,
&
count
);
for
(
i
=
1
;
i
<=
count
;
i
++
)
{
...
...
Please
register
or
sign in
to post a comment