about summary refs log tree commit diff
path: root/crypt.awk
diff options
context:
space:
mode:
authorpulux <pulux@pf4sh.de>2015-01-05 17:19:47 +0100
committerpulux <pulux@pf4sh.de>2015-01-05 17:19:47 +0100
commitaf10e6c208a3cb83d5c681e92cb429b346d6f0e5 (patch)
tree02a7b06c91c3cf2ce1378a8fbd5f8cbcaa44f04a /crypt.awk
parent8ebda9d966e561bc385c3e45b44d308c06968e3e (diff)
downloadrunit-void-af10e6c208a3cb83d5c681e92cb429b346d6f0e5.tar.gz
runit-void-af10e6c208a3cb83d5c681e92cb429b346d6f0e5.tar.xz
runit-void-af10e6c208a3cb83d5c681e92cb429b346d6f0e5.zip
fix typo
Diffstat (limited to 'crypt.awk')
-rw-r--r--crypt.awk2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypt.awk b/crypt.awk
index d482dd3..dcb0476 100644
--- a/crypt.awk
+++ b/crypt.awk
@@ -1,7 +1,7 @@
 /^#/ || /^$/ { next }
 NF>4 { print "a valid crypttab has max 4 cols not " NF >"/dev/stderr"; next }
 {
-    # decod the src variants
+    # decode the src variants
     split($2, o_src, "=")
     if (o_src[1] == "UUID") "/sbin/blkid -t " $2 " -l -o device" |& getline src;
     else src=o_src[1];