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
7ea0f37d
...
7ea0f37de822399983ec98f901ffae6d1047dbaf
authored
2007-10-12 07:49:07 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(url_parse0):
proto:///file
means absolute file name.
1 parent
f80544be
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
mailbox/url.c
mailbox/url.c
View file @
7ea0f37
...
...
@@ -226,6 +226,12 @@ url_parse0 (mu_url_t u, char *name)
name
+=
2
;
if
(
name
[
0
]
==
'/'
)
{
u
->
path
=
name
;
return
0
;
}
/* Split into LHS and RHS of the '@', and then parse each side. */
u
->
host
=
strchr
(
name
,
'@'
);
if
(
u
->
host
==
NULL
)
...
...
Please
register
or
sign in
to post a comment