Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
cl-tar-file
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
cl-tar
cl-tar-file
Commits
67bb44b4
Unverified
Commit
67bb44b4
authored
3 years ago
by
Eric Timmons
Browse files
Options
Downloads
Patches
Plain Diff
Fix entry type detection for v7 archives
parent
da97461c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Pipeline
#5570
passed
3 years ago
Stage: test
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CHANGELOG.md
+4
-0
4 additions, 0 deletions
CHANGELOG.md
src/v7.lisp
+1
-1
1 addition, 1 deletion
src/v7.lisp
tar-file.asd
+1
-1
1 addition, 1 deletion
tar-file.asd
with
6 additions
and
2 deletions
CHANGELOG.md
+
4
−
0
View file @
67bb44b4
## Unreleased
+
Fix bug with determining type of entries in v7 archives.
## v0.1.2 - September 25, 2021
+
Fix bug where strings read from headers were not bounded to the length of the
...
...
This diff is collapsed.
Click to expand it.
src/v7.lisp
+
1
−
1
View file @
67bb44b4
...
...
@@ -25,7 +25,7 @@
'v7-header
)
(
defmethod
entry-type
((
tar-file
v7-tar-file
)
header
)
(
if
(
alexandria:ends-with
+ascii-/+
(
name
header
))
(
if
(
alexandria:ends-with
#\/
(
name
header
))
'directory-entry
(
alexandria:switch
((
typeflag
header
))
(
+tar-regular-file+
...
...
This diff is collapsed.
Click to expand it.
tar-file.asd
+
1
−
1
View file @
67bb44b4
;;; -*- mode: lisp -*-
(
asdf:defsystem
#:tar-file
:version
"0.1.
2
"
:version
"0.1.
3
"
:author
"Eric Timmons <eric@timmons.dev>"
:maintainer
"Eric Timmons <eric@timmons.dev>"
:description
"A package for reading and writing physical entries from/to tar files."
...
...
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