Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 29 Jun 2015 16:43:53 +0200
From:      Christian Brueffer <brueffer@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org,  svn-src-head@freebsd.org
Subject:   Re: svn commit: r284929 - head/share/examples/csh
Message-ID:  <559159A9.8070205@FreeBSD.org>
In-Reply-To: <201506291441.t5TEfKWN068005@svn.freebsd.org>
References:  <201506291441.t5TEfKWN068005@svn.freebsd.org>

next in thread | previous in thread | raw e-mail | index | archive | help
This should have been PR 191759.

Chris


On 2015-06-29 16:41, Christian Brueffer wrote:
> Author: brueffer
> Date: Mon Jun 29 14:41:19 2015
> New Revision: 284929
> URL: https://svnweb.freebsd.org/changeset/base/284929
>
> Log:
>    Fix issues that kept some of the examples from actually working.
>
>    PR:		144534
>    Submitted by:	Nicolas Edel
>    MFC after:	1 week
>
> Modified:
>    head/share/examples/csh/dot.cshrc
>
> Modified: head/share/examples/csh/dot.cshrc
> ==============================================================================
> --- head/share/examples/csh/dot.cshrc	Mon Jun 29 13:48:44 2015	(r284928)
> +++ head/share/examples/csh/dot.cshrc	Mon Jun 29 14:41:19 2015	(r284929)
> @@ -9,11 +9,11 @@
>   # has multiple ssh-agent(1) processes running, this will very likely
>   # set SSH_AUTH_SOCK to point to the wrong file/domain socket.
>   if (${?SSH_AUTH_SOCK} != "1") then
> -	setenv SSH_AUTH_SOCK `sockstat -u | awk '/^${USER}.+ ssh-agent/ { print $6 }'
> +	setenv SSH_AUTH_SOCK `sockstat -u | awk '/^${USER}.+ ssh-agent/ { print $6 }'`
>   endif
>
>   # Change only root's prompt
> -if (`id -g` == 0)
> +if (`id -g` == 0) then
>   	set prompt="root@%m# "
>   endif
>
> @@ -70,7 +70,7 @@ complete grep		'c/-*A/x:<#_lines_after>/
>         		'n/-*f/f/' \
>         		'n/*/f/'
>   complete ifconfig	'p@1@`ifconfig -l`@' \
> -      		'n/*/(range phase link netmask mtu vlandev vlan metric mediaopt down delete broadcast arp debug)/'
> +      		'n/*/(range phase link netmask mtu vlandev vlan metric mediaopt down delete broadcast arp debug)/' \
>         		'c/%/j/' \
>         		'n/*/`ps -ax | awk '"'"'{print $1}'"'"'`/'
>   complete kill		'c/-/S/' 'c/%/j/' 'n/*/`ps -ax | awk '"'"'{print $1}'"'"'`/'
>



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