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
718d0119
...
718d01190606d961837f97bececb4d28e9ec5856
authored
2007-03-07 19:53:52 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Update calls to mu_assoc_create
1 parent
3160d750
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
mail/alias.c
mailbox/mutil.c
mail/alias.c
View file @
718d011
...
...
@@ -90,7 +90,7 @@ alias_create (const char *name, alias_t *al)
if
(
!
aliases
)
{
mu_assoc_create
(
&
aliases
,
sizeof
(
struct
_alias
));
mu_assoc_create
(
&
aliases
,
sizeof
(
struct
_alias
)
,
0
);
mu_assoc_set_free
(
aliases
,
alias_free
);
}
...
...
mailbox/mutil.c
View file @
718d011
...
...
@@ -1432,7 +1432,7 @@ mutil_parse_field_map (const char *map, mu_assoc_t *passoc_tab, int *perr)
}
if
(
!
assoc_tab
)
{
rc
=
mu_assoc_create
(
&
assoc_tab
,
sizeof
(
char
*
));
rc
=
mu_assoc_create
(
&
assoc_tab
,
sizeof
(
char
*
)
,
0
);
if
(
rc
)
break
;
mu_assoc_set_free
(
assoc_tab
,
assoc_str_free
);
...
...
Please
register
or
sign in
to post a comment