Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 27 Jul 2005 13:50:34 GMT
From:      Thierry Besancon <Thierry.Besancon@math.jussieu.fr>
To:        freebsd-ports-bugs@FreeBSD.org
Subject:   Re: ports/84168: portmanager 0.2.9_4 can't go background
Message-ID:  <200507271350.j6RDoYYq035255@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
The following reply was made to PR ports/84168; it has been noted by GNATS.

From: Thierry Besancon <Thierry.Besancon@math.jussieu.fr>
To: bug-followup@FreeBSD.org, Thierry.Besancon@math.jussieu.fr
Cc:  
Subject: Re: ports/84168: portmanager 0.2.9_4 can't go background
Date: Wed, 27 Jul 2005 15:49:38 +0200 (CEST)

 Here's a patch against the file portmanager-0.2.9/portmanager/portmanager.c
 that fixed the bug :
 
 
 *** portmanager.c	Mon Jul 25 16:20:50 2005
 --- portmanager.c	Tue Jul 26 11:25:58 2005
 ***************
 *** 134,140 ****
   	/*
   	 * set xterm title
   	 */
 ! 	if( !strncmp( getenv("TERM"), "xterm", 5 ) )
   	{
   		stringSize	= strlen( id )
   				+ 1
 --- 134,140 ----
   	/*
   	 * set xterm title
   	 */
 ! 	if( getenv("TERM") && !strncmp( getenv("TERM"), "xterm", 5 ) )
   	{
   		stringSize	= strlen( id )
   				+ 1



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200507271350.j6RDoYYq035255>