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
314ef986
...
314ef98678f1b4c2c39b3c6a13145659869751fb
authored
2002-10-03 14:32:21 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(alias_expand): Return NULL if no suitable expansion was found.
1 parent
6658c767
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
mail/alias.c
mail/alias.c
View file @
314ef98
...
...
@@ -262,6 +262,6 @@ alias_expand(char *name)
list_t
list
;
if
(
!
alias_lookup
(
name
,
&
list
))
return
strdup
(
name
)
;
return
NULL
;
return
util_slist_to_string
(
list
,
","
);
}
...
...
Please
register
or
sign in
to post a comment