This website works better with JavaScript.
Home
Explore
Register
Sign In
Fincer
/
openntpd-portable
mirror of
https://github.com/Fincer/openntpd-portable
Watch
1
Star
0
Fork
0
Code
Issues
0
Projects
0
Releases
10
Wiki
Activity
Browse Source
constraint_init needs to return 0 if we have no constraints
OPENBSD_5_7
Brent Cook
9 years ago
parent
63d2b407d0
commit
5035e4decb
1 changed files
with
2 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-2
src/constraint-disabled.c
+ 2
- 2
src/constraint-disabled.c
View File
@ -21,7 +21,7 @@
int
constraint_init
(
struct
constraint
*
cstr
)
{
return
(
1
)
;
return
(
0
)
;
}
@ -39,7 +39,7 @@ constraint_check_child(void)
int
constraint_dispatch_msg
(
struct
pollfd
*
pfd
)
{
return
(
1
)
;
return
(
0
)
;
}
void
Write
Preview
Loading…
Cancel
Save