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
adfe9d9c
...
adfe9d9c2d555083c8117df397e6245306fe1e19
authored
2003-07-26 11:06:49 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(comp): Minor change
1 parent
2101ef3e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
imap4d/authenticate.c
imap4d/authenticate.c
View file @
adfe9d9
...
...
@@ -27,8 +27,8 @@ static list_t imap_auth_list;
static
int
comp
(
const
void
*
item
,
const
void
*
data
)
{
struct
imap_auth
*
p
=
item
;
return
strcmp
(
p
->
name
,
(
char
*
)
data
);
const
struct
imap_auth
*
p
=
item
;
return
strcmp
(
p
->
name
,
(
c
onst
c
har
*
)
data
);
}
void
...
...
Please
register
or
sign in
to post a comment