mirror of
https://github.com/postgres/postgres.git
synced 2025-11-12 05:01:15 +03:00
Fix function calls to INET/CIDR functions. Added cidr_out.
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
* is for IP V4 CIDR notation, but prepared for V6: just
|
||||
* add the necessary bits where the comments indicate.
|
||||
*
|
||||
* $Id: inet.c,v 1.9 1998/10/21 16:06:45 momjian Exp $
|
||||
* $Id: inet.c,v 1.10 1998/10/22 00:35:23 momjian Exp $
|
||||
* Jon Postel RIP 16 Oct 1998
|
||||
*/
|
||||
|
||||
@@ -148,6 +148,13 @@ cidr_in(char *src)
|
||||
return (dst);
|
||||
}
|
||||
|
||||
/* just a stub */
|
||||
char *
|
||||
cidr_out(inet *src)
|
||||
{
|
||||
return inet_out(src);
|
||||
}
|
||||
|
||||
/*
|
||||
* Boolean tests for magnitude. Add V4/V6 testing!
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user