diff options
author | Tom Lane | 2002-10-26 15:01:01 +0000 |
---|---|---|
committer | Tom Lane | 2002-10-26 15:01:01 +0000 |
commit | 3518fbe86f5a6a5b123bc5e23772f73a7d29fbec (patch) | |
tree | 37015cf47d1e9e9243f261149e48e5481292bbcf /contrib/chkpass/chkpass.c | |
parent | 0ed0a9ddc0b28ce19ddae3478ddeb22b54ccf8ce (diff) |
Add missing semicolons to a few PG_FUNCTION_INFO_V1 calls.
Diffstat (limited to 'contrib/chkpass/chkpass.c')
-rw-r--r-- | contrib/chkpass/chkpass.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/contrib/chkpass/chkpass.c b/contrib/chkpass/chkpass.c index 60e71df2d86..b4429adac02 100644 --- a/contrib/chkpass/chkpass.c +++ b/contrib/chkpass/chkpass.c @@ -4,7 +4,7 @@ * http://www.druid.net/darcy/ * - * $Id: chkpass.c,v 1.8 2002/08/29 12:18:20 darcy Exp $ + * $Id: chkpass.c,v 1.9 2002/10/26 15:00:59 tgl Exp $ * best viewed with tabs set to 4 */ @@ -62,7 +62,7 @@ verify_pass(const char *str) /* * CHKPASS reader. */ -PG_FUNCTION_INFO_V1(chkpass_in) +PG_FUNCTION_INFO_V1(chkpass_in); Datum chkpass_in(PG_FUNCTION_ARGS) { @@ -110,7 +110,7 @@ chkpass_in(PG_FUNCTION_ARGS) * Just like any string but we know it is max 15 (13 plus colon and terminator.) */ -PG_FUNCTION_INFO_V1(chkpass_out) +PG_FUNCTION_INFO_V1(chkpass_out); Datum chkpass_out(PG_FUNCTION_ARGS) { @@ -134,7 +134,7 @@ chkpass_out(PG_FUNCTION_ARGS) * special output function that doesn't output the colon */ -PG_FUNCTION_INFO_V1(chkpass_rout) +PG_FUNCTION_INFO_V1(chkpass_rout); Datum chkpass_rout(PG_FUNCTION_ARGS) { @@ -158,7 +158,7 @@ chkpass_rout(PG_FUNCTION_ARGS) * Boolean tests */ -PG_FUNCTION_INFO_V1(chkpass_eq) +PG_FUNCTION_INFO_V1(chkpass_eq); Datum chkpass_eq(PG_FUNCTION_ARGS) { @@ -177,7 +177,7 @@ chkpass_eq(PG_FUNCTION_ARGS) PG_RETURN_BOOL(strcmp(a1->password, crypt(str, a1->password)) == 0); } -PG_FUNCTION_INFO_V1(chkpass_ne) +PG_FUNCTION_INFO_V1(chkpass_ne); Datum chkpass_ne(PG_FUNCTION_ARGS) { |