White spaces.

git-svn-id: https://pupnp.svn.sourceforge.net/svnroot/pupnp/branches/branch-1.6.x@581 119443c7-1b9e-41f8-b6fc-b9c35fce742c
This commit is contained in:
Marcelo Roberto Jimenez 2010-08-22 02:10:50 +00:00
parent e386dd0d68
commit 2d978c32b8

View File

@ -243,15 +243,13 @@ int AdvertiseAndReply(
if (DeviceUDN && strlen(DeviceUDN) != 0) { if (DeviceUDN && strlen(DeviceUDN) != 0) {
if (strcasecmp(DeviceUDN, UDNstr)) { if (strcasecmp(DeviceUDN, UDNstr)) {
UpnpPrintf(UPNP_INFO, API, __FILE__, __LINE__, UpnpPrintf(UPNP_INFO, API, __FILE__, __LINE__,
"DeviceUDN=%s and search " "DeviceUDN=%s and search UDN=%s DID NOT match\n",
"UDN=%s did not match\n",
UDNstr, DeviceUDN); UDNstr, DeviceUDN);
break; break;
} else { } else {
UpnpPrintf(UPNP_INFO, API, __FILE__, __LINE__, UpnpPrintf(UPNP_INFO, API, __FILE__, __LINE__,
"DeviceUDN=%s and search " "DeviceUDN=%s and search UDN=%s MATCH\n",
"UDN=%s MATCH\n", UDNstr, UDNstr, DeviceUDN);
DeviceUDN);
SendReply(DestAddr, devType, 0, SendReply(DestAddr, devType, 0,
UDNstr, SInfo->DescURL, UDNstr, SInfo->DescURL,
defaultExp, 0); defaultExp, 0);
@ -270,8 +268,7 @@ int AdvertiseAndReply(
SendReply(DestAddr, DeviceType, 0, UDNstr, SInfo->DescURL, defaultExp, 1); SendReply(DestAddr, DeviceType, 0, UDNstr, SInfo->DescURL, defaultExp, 1);
} else { } else {
UpnpPrintf(UPNP_INFO, API, __FILE__, __LINE__, UpnpPrintf(UPNP_INFO, API, __FILE__, __LINE__,
"DeviceType=%s and search devType=%s" "DeviceType=%s and search devType=%s DID NOT MATCH\n",
" DID NOT MATCH\n",
devType, DeviceType); devType, DeviceType);
} }
} else { } else {