Hello Freevo's dev,
this patch is just for use memset instead of bzero in your
kaa.record module. Memset will be more portable than bzero.
And bzero is only available in uClibc, if the SUSV3_LEGACY
option is selected.
Thanks!
--
Mathieu SCHROETER
GeeXboX's dev.
--- a/record/src/fp_udpsend.cc 2006-11-26 19:07:08.000000000 +0100
+++ b/record/src/fp_udpsend.cc 2006-12-08 15:20:44.000000000 +0100
@@ -145,7 +145,7 @@
// fill struct with address and port
struct sockaddr_in ucaddr;
- bzero((char *) &ucaddr, sizeof(ucaddr));
+ memset((char *) &ucaddr, 0, sizeof(ucaddr));
ucaddr.sin_family = AF_INET;
ucaddr.sin_addr.s_addr = INADDR_ANY;
ucaddr.sin_port = 0;
-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Freevo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/freevo-devel