Commit b222cf06 authored by Richard Levitte's avatar Richard Levitte
Browse files

Since site_t is used, there's no more need to cast to int.

parent 68b08abb
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -211,7 +211,7 @@ const char *RAND_file_name(char *buf, size_t size)
		{
		if (OPENSSL_issetugid() == 0)
			s=getenv("HOME");
		if (s != NULL && ((int)(strlen(s)+strlen(RFILE)+2) < size))
		if (s != NULL && (strlen(s)+strlen(RFILE)+2 < size))
			{
			strcpy(buf,s);
#ifndef VMS