Index: src/test/regress/pg_regress.sh
===================================================================
RCS file: /home/cvsmirror/pgsql/src/test/regress/pg_regress.sh,v
retrieving revision 1.47
diff -c -r1.47 pg_regress.sh
*** src/test/regress/pg_regress.sh	22 Sep 2004 19:11:19 -0000	1.47
--- src/test/regress/pg_regress.sh	17 Oct 2004 18:55:55 -0000
***************
*** 470,476 ****
      if [ -n "$PGHOST" ]; then
          echo "(using postmaster on $PGHOST, $port_info)"
      else
!         echo "(using postmaster on Unix socket, $port_info)"
      fi
      message "dropping database \"$dbname\""
      "$bindir/dropdb" $psql_options "$dbname"
--- 470,483 ----
      if [ -n "$PGHOST" ]; then
          echo "(using postmaster on $PGHOST, $port_info)"
      else
! 		case $host_platform in
! 			*-*-mingw32*)
! 				echo "(using postmaster on localhost socket, $port_info)"
! 				;;
! 			*)
! 				echo "(using postmaster on Unix socket, $port_info)"
! 				;;
! 		esac
      fi
      message "dropping database \"$dbname\""
      "$bindir/dropdb" $psql_options "$dbname"
