Date: Sat, 3 May 2014 08:52:52 +0000 (UTC) From: Eitan Adler <eadler@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r265256 - head/usr.bin/ssh-copy-id Message-ID: <201405030852.s438qqCh053578@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: eadler Date: Sat May 3 08:52:52 2014 New Revision: 265256 URL: http://svnweb.freebsd.org/changeset/base/265256 Log: Fix syntax error with modern shells Submitted by: multiple Modified: head/usr.bin/ssh-copy-id/ssh-copy-id.sh Modified: head/usr.bin/ssh-copy-id/ssh-copy-id.sh ============================================================================== --- head/usr.bin/ssh-copy-id/ssh-copy-id.sh Sat May 3 04:44:03 2014 (r265255) +++ head/usr.bin/ssh-copy-id/ssh-copy-id.sh Sat May 3 08:52:52 2014 (r265256) @@ -45,7 +45,7 @@ sendkey() { if ! grep -sqwF "$key" "$keyfile"; then \ printf "$alg $key $comment\n" >> "$keyfile" ; \ fi ; \ - done \ + done ; \ if [ -x /sbin/restorecon ]; then \ /sbin/restorecon -F "$HOME/.ssh/" "$keyfile" >/dev/null 2>&1 || true ; \ fi
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201405030852.s438qqCh053578>