summaryrefslogtreecommitdiffhomepage
path: root/ecdsa.h
diff options
context:
space:
mode:
authorMatt Johnston <matt@ucc.asn.au>2018-03-08 22:37:54 +0800
committerMatt Johnston <matt@ucc.asn.au>2018-03-08 22:37:54 +0800
commitba94bcd2e876cf79a66f3f9f4e46473f89c288c8 (patch)
tree1d9a471e35506bae48442e66f95a8132c7090d01 /ecdsa.h
parent56855744b8309f6ca672e224ce8f287b5b6ba774 (diff)
It turns out you can't have a single-quote in an #error
Diffstat (limited to 'ecdsa.h')
-rw-r--r--ecdsa.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ecdsa.h b/ecdsa.h
index e86a038..01cb134 100644
--- a/ecdsa.h
+++ b/ecdsa.h
@@ -16,7 +16,7 @@
#elif DROPBEAR_ECC_521
#define ECDSA_DEFAULT_SIZE 521
#else
-#error ECDSA can't be enabled without enabling at least one size (256, 384, 521)
+#error ECDSA cannot be enabled without enabling at least one size (256, 384, 521)
#endif
ecc_key *gen_ecdsa_priv_key(unsigned int bit_size);