Author: des
Date: Mon Apr  1 13:48:30 2013
New Revision: 248975
URL: http://svnweb.freebsd.org/changeset/base/248975

Log:
  Silence warnings about redefined macros.

Modified:
  head/crypto/openssh/umac128.c

Modified: head/crypto/openssh/umac128.c
==============================================================================
--- head/crypto/openssh/umac128.c       Mon Apr  1 13:27:49 2013        
(r248974)
+++ head/crypto/openssh/umac128.c       Mon Apr  1 13:48:30 2013        
(r248975)
@@ -1,7 +1,11 @@
 /* $FreeBSD$ */
 #define UMAC_OUTPUT_LEN                16
+#undef umac_new
 #define umac_new               ssh_umac128_new
+#undef umac_update
 #define umac_update            ssh_umac128_update
+#undef umac_final
 #define umac_final             ssh_umac128_final
+#undef umac_delete
 #define umac_delete            ssh_umac128_delete
 #include "umac.c"
_______________________________________________
svn-src-head@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to