blob: ec788ea29df571bc0ef887432f0d62a30b748b50 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
Description: fix spelling errors.
Author: Joao Eriberto Mota Filho <eriberto@debian.org>
Last-Update: 2015-11-12
Index: sleuthkit-4.2.0/tsk/auto/auto_db.cpp
===================================================================
--- sleuthkit-4.2.0.orig/tsk/auto/auto_db.cpp
+++ sleuthkit-4.2.0/tsk/auto/auto_db.cpp
@@ -395,7 +395,7 @@ uint8_t
if (m_db->inTransaction()) {
tsk_error_reset();
tsk_error_set_errno(TSK_ERR_AUTO_DB);
- tsk_error_set_errstr("TskAutoDb::startAddImage(): Already in a transaction, image might not be commited");
+ tsk_error_set_errstr("TskAutoDb::startAddImage(): Already in a transaction, image might not be committed");
registerError();
return 1;
}
@@ -439,7 +439,7 @@ uint8_t
if (m_db->inTransaction()) {
tsk_error_reset();
tsk_error_set_errno(TSK_ERR_AUTO_DB);
- tsk_error_set_errstr("TskAutoDb::startAddImage(): Already in a transaction, image might not be commited");
+ tsk_error_set_errstr("TskAutoDb::startAddImage(): Already in a transaction, image might not be committed");
registerError();
return 1;
}
@@ -517,7 +517,7 @@ int64_t
TskAutoDb::commitAddImage()
{
if (tsk_verbose)
- tsk_fprintf(stderr, "TskAutoDb::commitAddImage: Commiting add image process\n");
+ tsk_fprintf(stderr, "TskAutoDb::commitAddImage: Committing add image process\n");
if (m_imgTransactionOpen == false) {
tsk_error_reset();
|