Message ID | 20250410062057.1845550-1-quic_amisjain@quicinc.com |
---|---|
State | Superseded |
Headers | show |
Series | [v2] obex: Send response to client for Abort request | expand |
This is automated email and please do not reply to this email! Dear submitter, Thank you for submitting the patches to the linux bluetooth mailing list. This is a CI test results with your patch series: PW Link:https://patchwork.kernel.org/project/bluetooth/list/?series=951852 ---Test result--- Test Summary: CheckPatch PENDING 0.42 seconds GitLint PENDING 1.77 seconds BuildEll PASS 20.72 seconds BluezMake PASS 2628.98 seconds MakeCheck PASS 20.40 seconds MakeDistcheck PASS 198.21 seconds CheckValgrind PASS 274.92 seconds CheckSmatch PASS 302.25 seconds bluezmakeextell PASS 128.34 seconds IncrementalBuild PENDING 0.33 seconds ScanBuild PASS 898.88 seconds Details ############################## Test: CheckPatch - PENDING Desc: Run checkpatch.pl script Output: ############################## Test: GitLint - PENDING Desc: Run gitlint Output: ############################## Test: IncrementalBuild - PENDING Desc: Incremental build with the patches in the series Output: --- Regards, Linux Bluetooth
diff --git a/obexd/src/obex.c b/obexd/src/obex.c index 370bfac9e..0330d5a7c 100644 --- a/obexd/src/obex.c +++ b/obexd/src/obex.c @@ -389,6 +389,8 @@ static void transfer_complete(GObex *obex, GError *err, gpointer user_data) if (err != NULL) { error("transfer failed: %s\n", err->message); + if (strcmp(err->message, "Request was aborted") == 0) + os_set_response(os, 0); goto reset; }