Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit893fe49

Browse files
committed
Treat \r as white space when parsing pg_hba and related files.
Should make life easier for DBAs who insist on editing files withWindoze tools.
1 parente37cce0 commit893fe49

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

‎src/backend/libpq/hba.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
*
1111
*
1212
* IDENTIFICATION
13-
* $Header: /cvsroot/pgsql/src/backend/libpq/hba.c,v 1.84 2002/06/20 20:29:28 momjian Exp $
13+
* $Header: /cvsroot/pgsql/src/backend/libpq/hba.c,v 1.85 2002/06/26 14:52:08 tgl Exp $
1414
*
1515
*-------------------------------------------------------------------------
1616
*/
@@ -74,7 +74,7 @@ static char *tokenize_inc_file(const char *inc_filename);
7474
staticbool
7575
isblank(constcharc)
7676
{
77-
returnc==' '||c=='\t';
77+
returnc==' '||c=='\t'||c=='\r';
7878
}
7979

8080

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp