1
0
Fork 0
mirror of https://github.com/postmannen/ctrl.git synced 2024-12-14 12:37:31 +00:00

added file info content to copyDstDone messages

This commit is contained in:
postmannen 2023-06-02 12:27:18 +02:00
parent 6da53c8ed6
commit ce1eba687a

View file

@ -627,7 +627,8 @@ func copySrcSubProcFunc(proc process, cia copyInitialData, cancel context.Cancel
resendRetries++
case copyDstDone:
newReplyMessage(proc, msgForSubReplies, []byte("copyDstDone"))
d := fmt.Sprintf("copyDstDone,%v,%v", cia.DstDir, cia.DstFile)
newReplyMessage(proc, msgForSubReplies, []byte(d))
cancel()
return nil