Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Sleuthkit
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
IRT
Sleuthkit
Commits
ced924da
Commit
ced924da
authored
16 years ago
by
Brian Carrier
Browse files
Options
Downloads
Patches
Plain Diff
Fixed error message type in fs_attr_add
parent
4d816c6a
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tsk3/fs/fs_attr.c
+3
-3
3 additions, 3 deletions
tsk3/fs/fs_attr.c
with
3 additions
and
3 deletions
tsk3/fs/fs_attr.c
+
3
−
3
View file @
ced924da
...
@@ -443,7 +443,7 @@ tsk_fs_attr_add_run(TSK_FS_INFO * a_fs, TSK_FS_ATTR * a_fs_attr,
...
@@ -443,7 +443,7 @@ tsk_fs_attr_add_run(TSK_FS_INFO * a_fs, TSK_FS_ATTR * a_fs_attr,
* the filler to start from VCN 0 */
* the filler to start from VCN 0 */
if
(
data_run_cur
->
offset
>
a_data_run_new
->
offset
)
{
if
(
data_run_cur
->
offset
>
a_data_run_new
->
offset
)
{
tsk_error_reset
();
tsk_error_reset
();
tsk_errno
=
TSK_ERR_FS_
ARG
;
tsk_errno
=
TSK_ERR_FS_
GENFS
;
snprintf
(
tsk_errstr
,
TSK_ERRSTR_L
,
snprintf
(
tsk_errstr
,
TSK_ERRSTR_L
,
"tsk_fs_attr_add_run: could not add data_run b.c. offset (%"
"tsk_fs_attr_add_run: could not add data_run b.c. offset (%"
PRIuOFF
") is larger than FILLER (%"
PRIuOFF
") (%"
PRIuOFF
") is larger than FILLER (%"
PRIuOFF
") (%"
...
@@ -551,9 +551,9 @@ tsk_fs_attr_add_run(TSK_FS_INFO * a_fs, TSK_FS_ATTR * a_fs_attr,
...
@@ -551,9 +551,9 @@ tsk_fs_attr_add_run(TSK_FS_INFO * a_fs, TSK_FS_ATTR * a_fs_attr,
}
}
tsk_error_reset
();
tsk_error_reset
();
tsk_errno
=
TSK_ERR_FS_
ARG
;
tsk_errno
=
TSK_ERR_FS_
GENFS
;
snprintf
(
tsk_errstr
,
TSK_ERRSTR_L
,
snprintf
(
tsk_errstr
,
TSK_ERRSTR_L
,
"fs_attr_add_run: error adding aditional run (%"
PRIuINUM
"fs_attr_add_run: error adding ad
d
itional run (%"
PRIuINUM
"): No filler entry for %"
PRIuDADDR
". Final: %"
PRIuDADDR
,
"): No filler entry for %"
PRIuDADDR
". Final: %"
PRIuDADDR
,
a_fs_attr
->
fs_file
->
meta
->
addr
,
a_data_run_new
->
offset
,
a_fs_attr
->
fs_file
->
meta
->
addr
,
a_data_run_new
->
offset
,
data_run_prev
->
offset
+
data_run_prev
->
len
);
data_run_prev
->
offset
+
data_run_prev
->
len
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment