Update of /cvsroot/srvx/services/src
In directory usw-pr-cvs1:/tmp/cvs-serv16724/src
Modified Files:
Tag: rel-1_0
common.h
Log Message:
C makes array bounds in function decl's meaningless, so don't list it
Index: common.h
===================================================================
RCS file: /cvsroot/srvx/services/src/common.h,v
retrieving revision 1.60.2.8
retrieving revision 1.60.2.9
diff -C2 -r1.60.2.8 -r1.60.2.9
*** common.h 2001/08/14 15:31:29 1.60.2.8
--- common.h 2001/09/04 18:19:47 1.60.2.9
***************
*** 127,131 ****
#define MD5_CRYPT_LENGTH 33
! const char *cryptpass(const char *pass, char buffer[MD5_CRYPT_LENGTH]);
int checkpass(const char *pass, const char *crypt);
--- 127,132 ----
#define MD5_CRYPT_LENGTH 33
! /* buffer[] must be at least MD5_CRYPT_LENGTH bytes long */
! const char *cryptpass(const char *pass, char buffer[]);
int checkpass(const char *pass, const char *crypt);
|