svn commit: r270257 - stable/10/usr.bin/ssh-copy-id
Eitan Adler
eadler at FreeBSD.org
Thu Aug 21 04:26:17 UTC 2014
Author: eadler
Date: Thu Aug 21 04:26:16 2014
New Revision: 270257
URL: http://svnweb.freebsd.org/changeset/base/270257
Log:
MFC r265256:
Syntax fix
Modified:
stable/10/usr.bin/ssh-copy-id/ssh-copy-id.sh
Directory Properties:
stable/10/ (props changed)
Modified: stable/10/usr.bin/ssh-copy-id/ssh-copy-id.sh
==============================================================================
--- stable/10/usr.bin/ssh-copy-id/ssh-copy-id.sh Thu Aug 21 02:40:33 2014 (r270256)
+++ stable/10/usr.bin/ssh-copy-id/ssh-copy-id.sh Thu Aug 21 04:26:16 2014 (r270257)
@@ -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
More information about the svn-src-stable
mailing list