summaryrefslogtreecommitdiff
path: root/src/port
Commit message (Expand)AuthorAgeFilesLines
* Message correctionsPeter Eisentraut2005-10-291-2/+2
* Standard pgindent run for 8.1.Bruce Momjian2005-10-1520-242/+222
* Fix uppercase TRUE/FALSE that are WIN32 stuffl.Bruce Momjian2005-10-131-3/+3
* Use get_progname() in backend main.c, rather than port-specific hackBruce Momjian2005-10-131-2/+2
* Fix problems with PGXS builds against an installation tree that wasTom Lane2005-09-272-2/+22
* Fix our version of strdup() to adhere to the standard semantics forTom Lane2005-09-271-3/+5
* Clarify some error messagesPeter Eisentraut2005-09-181-9/+9
* libpgport routines need nonstandard palloc to work on Windows.Tom Lane2005-09-031-1/+12
* In copy_file, use a palloc'd buffer instead of just a local char array;Tom Lane2005-09-021-3/+10
* Fix platform-specific test for path prefix-ness: move it into path.c whereTom Lane2005-08-291-1/+17
* Fix bogus freeaddrinfo() call in WIN32 code, extend gai_strerror toTom Lane2005-08-251-7/+35
* Add code to use Windows getaddrinfo and friends if they exist. ThisTom Lane2005-08-241-2/+133
* Fix broken lrand48() implementation, per Merlin Moncure.Tom Lane2005-08-231-1/+1
* Fix up canonicalize_path to do the right thing in all cases (I think ...Tom Lane2005-08-121-14/+75
* No server version of snprintf needed, so remove Makefile rule.Bruce Momjian2005-08-121-4/+1
* Reverse out changes to canonicalize_path(), per suggestion from Tom.Bruce Momjian2005-08-122-53/+18
* Modify canonicalize_path() so if we would return a trailing "..", throwBruce Momjian2005-08-122-18/+53
* Update comments.Bruce Momjian2005-08-121-2/+2
* Document why we only handle trailing "..".Bruce Momjian2005-08-121-2/+8
* Fix BSD fseeko to seek from the end of the file.Bruce Momjian2005-08-111-1/+2
* Fix canonicalize_path so "../.." isn't stripped off and ignored.Bruce Momjian2005-08-111-2/+5
* Document why Win32 loops over rename/unlink are necessary.Bruce Momjian2005-08-101-3/+11
* Clean up CREATE DATABASE processing to make it more robust and get ridTom Lane2005-08-021-45/+101
* rmtree() reported the wrong pathname if final rmdir failed.Tom Lane2005-08-021-5/+8
* Fix a whole bunch of #includes that were either wrong or redundant.Tom Lane2005-07-2819-57/+44
* Add parentheses to macros when args are used in computations. WithoutBruce Momjian2005-05-252-7/+7
* Fix a few minor mistakes in header comments. From Qingqing Zhou.Neil Conway2005-05-162-4/+7
* Must count '*' characters as potential arguments.Tom Lane2005-04-141-7/+11
* Kerberos fixes from Magnus Hagander --- in theory Kerberos 5 authTom Lane2005-03-251-2/+25
* Change Win32 O_SYNC method to O_DSYNC because that is what the methodBruce Momjian2005-03-241-3/+3
* Add missing error checking in readdir() loops.Tom Lane2005-03-242-3/+51
* Add mention of why malloc() has to be used in snprintf.c.Bruce Momjian2005-03-201-1/+2
* Department of second thoughts. Remove FRONTEND from snprintf.c becauseBruce Momjian2005-03-202-17/+4
* Fix typo in Makefile.Bruce Momjian2005-03-201-2/+2
* Another change for FRONTEND snprintf.c.Bruce Momjian2005-03-201-1/+4
* Mark snprintf.c as a file that uses FRONTEND and needs to a version inBruce Momjian2005-03-201-1/+2
* Factor duplicate snprintf code into functions.Bruce Momjian2005-03-171-178/+175
* Add sprintf support, that were were missing.Bruce Momjian2005-03-161-46/+108
* pgindent snprintf.c for consistency.Bruce Momjian2005-03-161-134/+141
* Fix snprintf for %*$.Bruce Momjian2005-03-161-6/+6
* Fix snprintf to handle %$ properly by storing and reordering theBruce Momjian2005-03-161-97/+103
* Fix snprintf() to properly handle precision specification for %f.Bruce Momjian2005-03-121-1/+3
* Add fprintf() custom version to libpgport.Bruce Momjian2005-03-111-4/+27
* Define snprintf() to call pg_snprintf() so our own snprintf-likeBruce Momjian2005-03-111-13/+9
* Move snprintf int64 compatibility letters into a NOT_USED block.Bruce Momjian2005-03-021-1/+3
* Fix for %I64d snprintf.Bruce Momjian2005-03-021-2/+2
* snprintf() %I64d code fix.Bruce Momjian2005-03-021-2/+3
* Use our own snprintf() only if NLS is enabled, and support %qd and %I64d.Bruce Momjian2005-03-021-1/+18
* Prevent large allocation in snprintf to hold positional parameters.Bruce Momjian2005-03-021-15/+38
* Fix snprintf on Win32:Bruce Momjian2005-03-021-23/+26