Repair interpretation of GB as MB.

This commit is contained in:
Peter Eisentraut 2006-08-31 15:10:51 +00:00
parent c23be34a25
commit 4c0bd228fa
1 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@
* Written by Peter Eisentraut <peter_e@gmx.net>. * Written by Peter Eisentraut <peter_e@gmx.net>.
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.345 2006/08/29 11:37:47 petere Exp $ * $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.346 2006/08/31 15:10:51 petere Exp $
* *
*-------------------------------------------------------------------- *--------------------------------------------------------------------
*/ */
@ -3588,7 +3588,7 @@ parse_int(const char *value, int *result, int flags)
} }
else if (strcmp(endptr, "GB") == 0) else if (strcmp(endptr, "GB") == 0)
{ {
val *= KB_PER_MB; val *= KB_PER_GB;
used = true; used = true;
endptr += 2; endptr += 2;
} }