Author: dmeyer
Date: Fri Dec 22 12:28:12 2006
New Revision: 2274

Modified:
   trunk/record/src/fp_udpsend.cc

Log:
replace bzero with memset

Modified: trunk/record/src/fp_udpsend.cc
==============================================================================
--- trunk/record/src/fp_udpsend.cc      (original)
+++ trunk/record/src/fp_udpsend.cc      Fri Dec 22 12:28:12 2006
@@ -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-cvslog mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/freevo-cvslog

Reply via email to