provide notice that new public key has been created and stored

This commit is contained in:
F. Duncanh
2023-12-07 08:48:50 -05:00
parent 40da5d25ad
commit b1c52a65b6
6 changed files with 18 additions and 13 deletions

View File

@@ -1224,9 +1224,9 @@ static int register_dnssd() {
LOGE("No DNS-SD Server found (DNSServiceRegister call returned kDNSServiceErr_Unknown)");
} else if (dnssd_error == -65548) {
LOGE("DNSServiceRegister call returned kDNSServiceErr_NameConflict");
LOGE("Is another instance of %s running with the same DeviceID (MAC address) or using same network ports?",
LOGI("Is another instance of %s running with the same DeviceID (MAC address) or using same network ports?",
DEFAULT_NAME);
LOGI("\nUse options -m ... and -p ... to allow multiple instances of %s to run concurrently", DEFAULT_NAME);
LOGI("Use options -m ... and -p ... to allow multiple instances of %s to run concurrently", DEFAULT_NAME);
} else {
LOGE("dnssd_register_raop failed with error code %d\n"
"mDNS Error codes are in range FFFE FF00 (-65792) to FFFE FFFF (-65537) "