Add multiple inclusion protection to rpc/des.h
authorMike Frysinger <vapier@gentoo.org>
Mon, 20 Jun 2011 17:48:56 +0000 (13:48 -0400)
committerSteve Dickson <steved@redhat.com>
Tue, 21 Jun 2011 18:31:45 +0000 (14:31 -0400)
If you try to include this file multiple times, you get a build failure
due to redefinitions of enums and such.

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Signed-off-by: Steve Dickson <steved@redhat.com>
tirpc/rpc/des.h

index e3d6897fa993ee909206646b8cdf4008cabc424d..d2881ad473e171b675a24ddbc1a0e0e937dd980e 100644 (file)
@@ -33,6 +33,9 @@
  * Copyright (c) 1986 by Sun Microsystems, Inc.
  */
 
+#ifndef _RPC_DES_H_
+#define _RPC_DES_H_
+
 #define DES_MAXLEN     65536   /* maximum # of bytes to encrypt  */
 #define DES_QUICKLEN   16      /* maximum # of bytes to encrypt quickly */
 
@@ -80,3 +83,5 @@ struct desparams {
  * Software DES.
  */
 extern int _des_crypt( char *, int, struct desparams * );
+
+#endif