Skip to content

Commit 6d7e529

Browse files
committed
Added a comment in case I go back to add in older versions of SQLite
1 parent 4faebe3 commit 6d7e529

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sqlite_miner.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ sub file_is_sqlite {
154154
open(TMP_INPUT, "<$file_path");
155155
binmode(TMP_INPUT);
156156

157-
# Read in the first 16 bytes
157+
# Read in the first 16 bytes to find SQLite 3 format
158158
read TMP_INPUT, $tmp_header, 15;
159159
if($tmp_header =~ /^SQLite format 3$/) {
160160
$to_return = 1;

0 commit comments

Comments
 (0)