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
5e7bb1fd
...
5e7bb1fd972b8efbd58fe2b618a5f217a3fc98e5
authored
2003-02-03 11:24:33 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(buffer_grow, _gsasl_strerror): Fixed declarations.
1 parent
f4b300d5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
auth/gsasl.c
auth/gsasl.c
View file @
5e7bb1f
...
...
@@ -104,7 +104,7 @@ _gsasl_destroy (stream_t stream)
#define buffer_drop(s) s->level = 0
int
buffer_grow
(
struct
_gsasl_stream
*
s
,
char
*
ptr
,
size_t
size
)
buffer_grow
(
struct
_gsasl_stream
*
s
,
c
onst
c
har
*
ptr
,
size_t
size
)
{
if
(
!
s
->
buffer
)
{
...
...
@@ -255,7 +255,6 @@ _gsasl_write (stream_t stream, const char *iptr, size_t isize,
off_t
offset
,
size_t
*
nbytes
)
{
int
rc
;
size_t
total
=
0
;
struct
_gsasl_stream
*
s
=
stream_get_owner
(
stream
);
rc
=
buffer_grow
(
s
,
iptr
,
isize
);
...
...
@@ -323,7 +322,7 @@ _gsasl_open (stream_t stream)
}
int
_gsasl_strerror
(
stream_t
stream
,
c
onst
c
har
**
pstr
)
_gsasl_strerror
(
stream_t
stream
,
char
**
pstr
)
{
struct
_gsasl_stream
*
s
=
stream_get_owner
(
stream
);
*
pstr
=
gsasl_strerror
(
s
->
last_err
);
...
...
Please
register
or
sign in
to post a comment