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
27354151
...
27354151ed245f4877c8f8aa773f3111ec14d373
authored
2002-01-15 21:56:11 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Fixed typecasts.
1 parent
e636d13f
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
pop3d/apop.c
pop3d/apop.c
View file @
2735415
...
...
@@ -85,8 +85,8 @@ pop3d_apopuser (const char *user)
if
(
password
==
NULL
)
return
NULL
;
sprintf
(
password
,
"%.*s"
,
(
char
*
)
MU_DATUM_SIZE
(
data
),
(
int
)
MU_DATUM_PTR
(
data
));
sprintf
(
password
,
"%.*s"
,
(
int
)
MU_DATUM_SIZE
(
data
),
(
char
*
)
MU_DATUM_PTR
(
data
));
return
password
;
}
#else
/* !USE_DBM */
...
...
Please
register
or
sign in
to post a comment