Index: src/bin/pg_ctl/pg_ctl.sh
===================================================================
RCS file: /cvsroot/pgsql/src/bin/pg_ctl/pg_ctl.sh,v
retrieving revision 1.25
diff -c -r1.25 pg_ctl.sh
*** src/bin/pg_ctl/pg_ctl.sh	29 Sep 2001 03:09:32 -0000	1.25
--- src/bin/pg_ctl/pg_ctl.sh	19 Jul 2002 13:48:21 -0000
***************
*** 332,343 ****
      fi
  
      if [ -n "$logfile" ]; then
!         "$po_path" "$@" </dev/null >>$logfile 2>&1 &
      else
          # when starting without log file, redirect stderr to stdout, so
          # pg_ctl can be invoked with >$logfile and still have pg_ctl's
          # stderr on the terminal.
!         "$po_path" "$@" </dev/null 2>&1 &
      fi
  
      # if had an old lockfile, check to see if we were able to start
--- 332,343 ----
      fi
  
      if [ -n "$logfile" ]; then
!         "$po_path" ${1:+"$@"} </dev/null >>$logfile 2>&1 &
      else
          # when starting without log file, redirect stderr to stdout, so
          # pg_ctl can be invoked with >$logfile and still have pg_ctl's
          # stderr on the terminal.
!         "$po_path" ${1:+"$@"} </dev/null 2>&1 &
      fi
  
      # if had an old lockfile, check to see if we were able to start
Index: src/bin/pgaccess/main.tcl
===================================================================
RCS file: /cvsroot/pgsql/src/bin/pgaccess/main.tcl,v
retrieving revision 1.6
diff -c -r1.6 main.tcl
*** src/bin/pgaccess/main.tcl	2 Jul 2002 06:11:23 -0000	1.6
--- src/bin/pgaccess/main.tcl	19 Jul 2002 13:48:22 -0000
***************
*** 1,6 ****
  #!/bin/sh
  # the next line restarts using wish \
! exec wish "$0" "$@"
  
  image create bitmap dnarw -data  {
  #define down_arrow_width 15
--- 1,6 ----
  #!/bin/sh
  # the next line restarts using wish \
! exec wish "$0" ${1:+"$@"}
  
  image create bitmap dnarw -data  {
  #define down_arrow_width 15
