Index: src/bin/pg_ctl/pg_ctl.c
===================================================================
RCS file: /cvsroot/pgsql-server/src/bin/pg_ctl/pg_ctl.c,v
retrieving revision 1.23
diff -c -c -r1.23 pg_ctl.c
*** src/bin/pg_ctl/pg_ctl.c	22 Jul 2004 01:44:36 -0000	1.23
--- src/bin/pg_ctl/pg_ctl.c	29 Jul 2004 15:36:15 -0000
***************
*** 359,365 ****
  			/* keep looking, maybe there is another -p */
  		}
  		/* Advance to next whitespace */
! 		while (!isspace(*p))
  			p++;
  	}
  
--- 359,365 ----
  			/* keep looking, maybe there is another -p */
  		}
  		/* Advance to next whitespace */
! 		while (*p && !isspace(*p))
  			p++;
  	}
  
