mirror of
https://github.com/postgres/postgres.git
synced 2025-07-14 08:21:07 +03:00
pgindent run for 9.4
This includes removing tabs after periods in C comments, which was applied to back branches, so this change should not effect backpatching.
This commit is contained in:
@ -119,7 +119,7 @@ pg_open_tzfile(const char *name, char *canonname)
|
||||
|
||||
/*
|
||||
* Scan specified directory for a case-insensitive match to fname
|
||||
* (of length fnamelen --- fname may not be null terminated!). If found,
|
||||
* (of length fnamelen --- fname may not be null terminated!). If found,
|
||||
* copy the actual filename into canonname and return true.
|
||||
*/
|
||||
static bool
|
||||
@ -142,7 +142,7 @@ scan_directory_ci(const char *dirname, const char *fname, int fnamelen,
|
||||
while ((direntry = ReadDir(dirdesc, dirname)) != NULL)
|
||||
{
|
||||
/*
|
||||
* Ignore . and .., plus any other "hidden" files. This is a security
|
||||
* Ignore . and .., plus any other "hidden" files. This is a security
|
||||
* measure to prevent access to files outside the timezone directory.
|
||||
*/
|
||||
if (direntry->d_name[0] == '.')
|
||||
@ -335,7 +335,7 @@ pg_tzset_offset(long gmtoffset)
|
||||
* This is called before GUC variable initialization begins. Its purpose
|
||||
* is to ensure that log_timezone has a valid value before any logging GUC
|
||||
* variables could become set to values that require elog.c to provide
|
||||
* timestamps (e.g., log_line_prefix). We may as well initialize
|
||||
* timestamps (e.g., log_line_prefix). We may as well initialize
|
||||
* session_timestamp to something valid, too.
|
||||
*/
|
||||
void
|
||||
|
Reference in New Issue
Block a user