diff options
author | 2015-01-04 18:44:12 +0000 | |
---|---|---|
committer | 2015-01-04 18:44:12 +0000 | |
commit | 18416cbb0159c9e06e895b7454b53e2ca640ec33 (patch) | |
tree | a71118b8712636a22d6df1d69d455f2c6fd9fae6 | |
parent | remove code for ancient gcc. (diff) | |
download | wireguard-openbsd-18416cbb0159c9e06e895b7454b53e2ca640ec33.tar.xz wireguard-openbsd-18416cbb0159c9e06e895b7454b53e2ca640ec33.zip |
back to using ramdisk encrypt again. theo found and fixed the (my) bug.
-rw-r--r-- | distrib/miniroot/install.sub | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/distrib/miniroot/install.sub b/distrib/miniroot/install.sub index f3797d72e8b..4590774878b 100644 --- a/distrib/miniroot/install.sub +++ b/distrib/miniroot/install.sub @@ -1,4 +1,4 @@ -# $OpenBSD: install.sub,v 1.805 2015/01/04 02:26:29 tedu Exp $ +# $OpenBSD: install.sub,v 1.806 2015/01/04 18:44:12 tedu Exp $ # # Copyright (c) 1997-2009 Todd Miller, Theo de Raadt, Ken Westerback # All rights reserved. @@ -369,7 +369,7 @@ encr_pwd() { $_p == '*************' ]]; then echo "$_p" else - /mnt/usr/bin/encrypt -b a -- "$_p" + encrypt -b a -- "$_p" fi } |