Skip to content

Commit fad56c5

Browse files
author
Thomas G. Lockhart
committed
Change LOread() and LOwrite() to loread() and lowrite() to allow use
by case-insensitive SQL parser.
1 parent 9412321 commit fad56c5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/backend/libpq/be-fsstubs.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/libpq/be-fsstubs.c,v 1.8 1997/04/21 04:28:59 vadim Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/libpq/be-fsstubs.c,v 1.9 1997/05/06 07:16:21 thomas Exp $
1111
*
1212
* NOTES
1313
* This should be moved to a more appropriate place. It is here
@@ -213,7 +213,7 @@ lo_unlink(Oid lobjId)
213213
*****************************************************************************/
214214

215215
struct varlena *
216-
LOread(int fd, int len)
216+
loread(int fd, int len)
217217
{
218218
struct varlena *retval;
219219
int totalread = 0;
@@ -225,7 +225,7 @@ LOread(int fd, int len)
225225
return retval;
226226
}
227227

228-
int LOwrite(int fd, struct varlena *wbuf)
228+
int lowrite(int fd, struct varlena *wbuf)
229229
{
230230
int totalwritten;
231231
int bytestowrite;

0 commit comments

Comments
 (0)