svn commit: trunk/uClibc/libcrypt

psm at uclibc.org psm at uclibc.org
Mon Nov 21 20:03:26 UTC 2005


Author: psm
Date: 2005-11-21 12:03:20 -0800 (Mon, 21 Nov 2005)
New Revision: 12456

Log:
Hide __des_crypt/__md5_crypt

Modified:
   trunk/uClibc/libcrypt/des.c
   trunk/uClibc/libcrypt/md5.c


Changeset:
Modified: trunk/uClibc/libcrypt/des.c
===================================================================
--- trunk/uClibc/libcrypt/des.c	2005-11-21 19:51:12 UTC (rev 12455)
+++ trunk/uClibc/libcrypt/des.c	2005-11-21 20:03:20 UTC (rev 12456)
@@ -638,7 +638,7 @@
 			block[(i << 5) | j] = (io[i] & bits32[j]) ? 1 : 0;
 }
 
-char *
+char attribute_hidden *
 __des_crypt(const char *key, const char *setting)
 {
 	u_int32_t	count, salt, l, r0, r1, keybuf[2];

Modified: trunk/uClibc/libcrypt/md5.c
===================================================================
--- trunk/uClibc/libcrypt/md5.c	2005-11-21 19:51:12 UTC (rev 12455)
+++ trunk/uClibc/libcrypt/md5.c	2005-11-21 20:03:20 UTC (rev 12456)
@@ -531,7 +531,7 @@
  * Use MD5 for what it is best at...
  */
 
-extern char * __md5_crypt( const char *pw, const char *salt)
+extern char attribute_hidden * __md5_crypt( const char *pw, const char *salt)
 {
 	/* Static stuff */
 	static const char *sp, *ep;




More information about the uClibc-cvs mailing list