Fix the double replySendFile()

Signed-off-by: Harald Hoyer <harald@redhat.com>
This commit is contained in:
Harald Hoyer 2019-07-09 14:16:37 +02:00
parent 6f3e7f7ecc
commit d52a2d1e54
No known key found for this signature in database
GPG Key ID: 340F12141EA0994D
1 changed files with 0 additions and 5 deletions

View File

@ -26,11 +26,6 @@ func (i *LibpodAPI) SendFile(call iopodman.VarlinkCall, ftype string, length int
defer outputFile.Close()
if err = call.ReplySendFile(outputFile.Name()); err != nil {
return call.ReplyErrorOccurred(err.Error())
}
// FIXME return parameter
if err = call.ReplySendFile("FIXME_file_handle"); err != nil {
// If an error occurs while sending the reply, return the error
return err
}