1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-10 17:42:29 +03:00

Fix function calls to INET/CIDR functions. Added cidr_out.

This commit is contained in:
Bruce Momjian
1998-10-22 00:35:28 +00:00
parent f9ee08499f
commit 2ba4ee74aa
4 changed files with 23 additions and 13 deletions

View File

@@ -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!
*/