diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-11-19 16:41:41 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-11-19 16:41:41 +0000 |
commit | 55b4bfe5e75838d9701f22af012a0028e7f77279 (patch) | |
tree | 2a5fcc7dc7568cbb518c8f8bb25a44ee9d8dabf0 /src/modules/extra | |
parent | ae0f4c9d021bfdfa547bbae6818027eec36db8a8 (diff) |
Remove space
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5780 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/extra')
-rw-r--r-- | src/modules/extra/pgsql_config.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/extra/pgsql_config.pl b/src/modules/extra/pgsql_config.pl index 683cb1ee8..277a4f71d 100644 --- a/src/modules/extra/pgsql_config.pl +++ b/src/modules/extra/pgsql_config.pl @@ -3,4 +3,4 @@ my $s = `pg_config --version`; $s =~ /^.*?(\d+)\.(\d+)\.(\d+).*?$/; my $v = hex(sprintf("0x%02x%02x%02x", $1, $2, $3)); -print "-D PGSQL_HAS_ESCAPECONN" if(($v >= 0x080104) or (($v >= 0x07030F) and ($v < 0x080000))); +print "-DPGSQL_HAS_ESCAPECONN" if(($v >= 0x080104) or (($v >= 0x07030F) and ($v < 0x080000))); |