Ethereal-cvs: [Ethereal-cvs] cvs commit: ethereal packet-tacacs.c

Note: This archive is from the project's previous web site, ethereal.com. This list is no longer active.

From: Guy Harris <guy@xxxxxxxxxxxxxxxxx>
Date: Tue, 23 Sep 2003 16:37:12 -0500 (CDT)
guy         2003/09/23 16:37:12 CDT

  Modified files:
    .                    packet-tacacs.c 
  Log:
  As doc/README.developer's "Portability" section says:
  
  	Don't use "bzero()", "bcopy()", or "bcmp()"; instead, use the
  	ANSI C routines
  
  		[memset, memcpy, memcmp] ...
  
  	Not all platforms necessarily have "bzero()"/"bcopy()"/"bcmp()",
  	and those that do might not declare them in the header file on
  	which they're declared on your platform.
  
  Make it so.
  
  Revision  Changes    Path
  1.28      +3 -3      ethereal/packet-tacacs.c