summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoreadler <eadler@FreeBSD.org>2012-05-13 23:27:06 +0000
committereadler <eadler@FreeBSD.org>2012-05-13 23:27:06 +0000
commitbadd8b3abc321cfb32bfdd7dc91c91291e86fff9 (patch)
tree94d101adb3e563110bd8d03655a7863e60b70407
parentc9c7be32d3e6a20382bc20e579c2ec450605389c (diff)
downloadFreeBSD-src-badd8b3abc321cfb32bfdd7dc91c91291e86fff9.zip
FreeBSD-src-badd8b3abc321cfb32bfdd7dc91c91291e86fff9.tar.gz
Add missing period at the end of the error message
Submitted by: pjd Approved by: cperciva (implicit) MFC after: 3 days X-MFC-With: r235201
-rw-r--r--sys/geom/eli/g_eli_integrity.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/geom/eli/g_eli_integrity.c b/sys/geom/eli/g_eli_integrity.c
index c029d8e..aeb5c2a 100644
--- a/sys/geom/eli/g_eli_integrity.c
+++ b/sys/geom/eli/g_eli_integrity.c
@@ -206,7 +206,7 @@ g_eli_auth_read_done(struct cryptop *crp)
*/
if (coroff != -1) {
G_ELI_DEBUG(0, "%s: Failed to authenticate %jd "
- "bytes of data at offset %jd",
+ "bytes of data at offset %jd.",
sc->sc_name, (intmax_t)corsize,
(intmax_t)coroff);
coroff = -1;
@@ -222,7 +222,7 @@ g_eli_auth_read_done(struct cryptop *crp)
/* Report previous corruption if there was one. */
if (coroff != -1) {
G_ELI_DEBUG(0, "%s: Failed to authenticate %jd "
- "bytes of data at offset %jd",
+ "bytes of data at offset %jd.",
sc->sc_name, (intmax_t)corsize, (intmax_t)coroff);
}
}
OpenPOWER on IntegriCloud