Signed-off-by: John Howard <jhoward@microsoft.com>
| ... | ... |
@@ -1,7 +1,7 @@ |
| 1 | 1 |
# the following lines are in sorted order, FYI |
| 2 | 2 |
github.com/Azure/go-ansiterm 388960b655244e76e24c75f48631564eaefade62 |
| 3 | 3 |
github.com/Microsoft/hcsshim v0.5.10 |
| 4 |
-github.com/Microsoft/go-winio v0.3.7 |
|
| 4 |
+github.com/Microsoft/go-winio v0.3.8 |
|
| 5 | 5 |
github.com/Sirupsen/logrus v0.11.0 |
| 6 | 6 |
github.com/davecgh/go-spew 6d212800a42e8ab5c146b8ace3490ee17e5225f9 |
| 7 | 7 |
github.com/docker/libtrust 9cbd2a1374f46905c68a4eb3694a130610adc62a |
| ... | ... |
@@ -339,7 +339,7 @@ func WriteBackupStreamFromTarFile(w io.Writer, t *tar.Reader, hdr *tar.Header) ( |
| 339 | 339 |
bhdr := winio.BackupHeader{
|
| 340 | 340 |
Id: winio.BackupAlternateData, |
| 341 | 341 |
Size: ahdr.Size, |
| 342 |
- Name: ahdr.Name[len(hdr.Name)+1:] + ":$DATA", |
|
| 342 |
+ Name: ahdr.Name[len(hdr.Name):] + ":$DATA", |
|
| 343 | 343 |
} |
| 344 | 344 |
err = bw.WriteHeader(&bhdr) |
| 345 | 345 |
if err != nil {
|