File tree 1 file changed +5
-5
lines changed 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 3
3
* is for IP V4 CIDR notation, but prepared for V6: just
4
4
* add the necessary bits where the comments indicate.
5
5
*
6
- * $Id: network.c,v 1.7 1999/03/22 05:00:57 momjian Exp $
6
+ * $Id: network.c,v 1.8 1999/04/15 02:20:50 thomas Exp $
7
7
* Jon Postel RIP 16 Oct 1998
8
8
*/
9
9
221
221
network_sub (inet * a1 , inet * a2 )
222
222
{
223
223
if (!PointerIsValid (a1 ) || !PointerIsValid (a2 ))
224
- return NULL ;
224
+ return FALSE ;
225
225
226
226
if ((ip_family (a1 ) == AF_INET ) && (ip_family (a2 ) == AF_INET ))
227
227
{
241
241
network_subeq (inet * a1 , inet * a2 )
242
242
{
243
243
if (!PointerIsValid (a1 ) || !PointerIsValid (a2 ))
244
- return NULL ;
244
+ return FALSE ;
245
245
246
246
if ((ip_family (a1 ) == AF_INET ) && (ip_family (a2 ) == AF_INET ))
247
247
{
261
261
network_sup (inet * a1 , inet * a2 )
262
262
{
263
263
if (!PointerIsValid (a1 ) || !PointerIsValid (a2 ))
264
- return NULL ;
264
+ return FALSE ;
265
265
266
266
if ((ip_family (a1 ) == AF_INET ) && (ip_family (a2 ) == AF_INET ))
267
267
{
281
281
network_supeq (inet * a1 , inet * a2 )
282
282
{
283
283
if (!PointerIsValid (a1 ) || !PointerIsValid (a2 ))
284
- return NULL ;
284
+ return FALSE ;
285
285
286
286
if ((ip_family (a1 ) == AF_INET ) && (ip_family (a2 ) == AF_INET ))
287
287
{
You can’t perform that action at this time.
0 commit comments