diff options
author | Bruce Momjian | 2000-11-25 05:00:33 +0000 |
---|---|---|
committer | Bruce Momjian | 2000-11-25 05:00:33 +0000 |
commit | 3f1998727d4e7b9ef285ae8ea90acc9811164931 (patch) | |
tree | afb5af8127873e47a4bcb102b34e0d4f07e2bcbe /src/include/miscadmin.h | |
parent | 91ba4cc76182ed0a501fd53a775eb87341c60141 (diff) |
here is a patch for formatting.c (to_char/timestampt()), for 7.1
it fixing Y,YY,YYY,YYYY conversion, the docs and regress tests update
are included too.
During the patch testing I found small bug in miscadmin.h in
convertstr() declaration. Here it's fixed too.
Thanks
Karel
Diffstat (limited to 'src/include/miscadmin.h')
-rw-r--r-- | src/include/miscadmin.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/miscadmin.h b/src/include/miscadmin.h index 6cb0fc94449..11711d3d472 100644 --- a/src/include/miscadmin.h +++ b/src/include/miscadmin.h @@ -12,7 +12,7 @@ * Portions Copyright (c) 1996-2000, PostgreSQL, Inc * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: miscadmin.h,v 1.72 2000/11/21 21:16:04 petere Exp $ + * $Id: miscadmin.h,v 1.73 2000/11/25 05:00:30 momjian Exp $ * * NOTES * some of the information in this file will be moved to @@ -142,7 +142,7 @@ extern int FindExec(char *full_path, const char *argv0, const char *binary_name) extern int CheckPathAccess(char *path, char *name, int open_mode); #ifdef CYR_RECODE -extern char *convertstr(char *, int, int); +extern char *convertstr(unsigned char *buff, int len, int dest); #endif /***************************************************************************** |