diff --git a/src/outputs/airplay.c b/src/outputs/airplay.c index 96346969..3814f3a6 100644 --- a/src/outputs/airplay.c +++ b/src/outputs/airplay.c @@ -3138,7 +3138,7 @@ start_failure(struct airplay_session *rs) // function was called because the encrypted request (SETUP) timed out if (device->auth_key) { - DPRINTF(E_LOG, L_AIRPLAY, "Clearing '%s' pairing keys, you need to pair again\n", rs->address); + DPRINTF(E_LOG, L_AIRPLAY, "Clearing '%s' pairing keys, you need to pair again\n", rs->devname); free(device->auth_key); device->auth_key = NULL; diff --git a/src/outputs/pair_homekit.c b/src/outputs/pair_homekit.c index 466098f5..bc52ef68 100644 --- a/src/outputs/pair_homekit.c +++ b/src/outputs/pair_homekit.c @@ -518,15 +518,6 @@ typedef enum { } TLVType; -typedef enum { - TLVMethod_PairSetup = 1, - TLVMethod_PairVerify = 2, - TLVMethod_AddPairing = 3, - TLVMethod_RemovePairing = 4, - TLVMethod_ListPairings = 5, -} TLVMethod; - - typedef enum { TLVError_Unknown = 1, // Generic error to handle unexpected errors TLVError_Authentication = 2, // Setup code or signature verification failed