Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
BIND
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
637
Issues
637
List
Boards
Labels
Service Desk
Milestones
Merge Requests
104
Merge Requests
104
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ISC Open Source Projects
BIND
Commits
965b6e2a
Commit
965b6e2a
authored
Sep 01, 2009
by
Tatuya JINMEI 神明達哉
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed trivial errors about the type of function return values
parent
85be60e3
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
6 deletions
+6
-6
lib/isc/app_api.c
lib/isc/app_api.c
+2
-2
lib/isc/timer.c
lib/isc/timer.c
+2
-2
lib/isc/unix/socket.c
lib/isc/unix/socket.c
+2
-2
No files found.
lib/isc/app_api.c
View file @
965b6e2a
...
...
@@ -14,7 +14,7 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: app_api.c,v 1.
3 2009/09/01 03:43:27
jinmei Exp $ */
/* $Id: app_api.c,v 1.
4 2009/09/01 08:12:33
jinmei Exp $ */
#include <config.h>
...
...
@@ -108,7 +108,7 @@ void
isc_app_ctxfinish
(
isc_appctx_t
*
ctx
)
{
REQUIRE
(
ISCAPI_APPCTX_VALID
(
ctx
));
return
(
ctx
->
methods
->
ctxfinish
(
ctx
)
);
ctx
->
methods
->
ctxfinish
(
ctx
);
}
void
...
...
lib/isc/timer.c
View file @
965b6e2a
...
...
@@ -15,7 +15,7 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: timer.c,v 1.9
0 2009/09/01 00:22:28
jinmei Exp $ */
/* $Id: timer.c,v 1.9
1 2009/09/01 08:12:33
jinmei Exp $ */
/*! \file */
...
...
@@ -133,7 +133,7 @@ ISC_TIMERFUNC_SCOPE isc_result_t
isc__timer_reset
(
isc_timer_t
*
timer
,
isc_timertype_t
type
,
isc_time_t
*
expires
,
isc_interval_t
*
interval
,
isc_boolean_t
purge
);
ISC_TIMERFUNC_SCOPE
isc_
result
_t
ISC_TIMERFUNC_SCOPE
isc_
timertype
_t
isc__timer_gettype
(
isc_timer_t
*
timer
);
ISC_TIMERFUNC_SCOPE
isc_result_t
isc__timer_touch
(
isc_timer_t
*
timer
);
...
...
lib/isc/unix/socket.c
View file @
965b6e2a
...
...
@@ -15,7 +15,7 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: socket.c,v 1.32
0 2009/09/01 00:22:28
jinmei Exp $ */
/* $Id: socket.c,v 1.32
1 2009/09/01 08:12:33
jinmei Exp $ */
/*! \file */
...
...
@@ -501,7 +501,7 @@ isc__socket_sendto2(isc_socket_t *sock, isc_region_t *region,
isc_socketevent_t
*
event
,
unsigned
int
flags
);
ISC_SOCKETFUNC_SCOPE
void
isc__socket_cleanunix
(
isc_sockaddr_t
*
sockaddr
,
isc_boolean_t
active
);
ISC_SOCKETFUNC_SCOPE
isc_
boolean
_t
ISC_SOCKETFUNC_SCOPE
isc_
result
_t
isc__socket_permunix
(
isc_sockaddr_t
*
sockaddr
,
isc_uint32_t
perm
,
isc_uint32_t
owner
,
isc_uint32_t
group
);
ISC_SOCKETFUNC_SCOPE
isc_result_t
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment