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
76017b8e
...
76017b8ee52ccbc2f689280ebe8b1473a6407297
authored
2004-01-13 15:09:10 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(amd_url_init): Use mu_scheme_autodetect_p().
1 parent
57461449
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
mailbox/amd.c
mailbox/amd.c
View file @
76017b8
...
...
@@ -1329,9 +1329,9 @@ amd_url_init (url_t url, const char *scheme)
if
(
!
name
)
return
0
;
if
(
strncmp
(
MU_PATH_SCHEME
,
name
,
MU_PATH_SCHEME_LEN
)
==
0
)
path_ptr
=
name
;
if
(
mu_scheme_autodetect_p
(
name
,
&
path_ptr
)
)
/* nothing */
;
/* reject the obvious */
else
if
(
strncmp
(
scheme
,
name
,
scheme_len
)
!=
0
||
len
<
scheme_len
+
1
)
...
...
Please
register
or
sign in
to post a comment