svn commit: r248975 - head/crypto/openssh

Dag-Erling Smørgrav des at FreeBSD.org
Mon Apr 1 13:48:31 UTC 2013


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"


More information about the svn-src-all mailing list