remove a comment that shouldn't have been there any more
[openssl.git] / crypto / tmdiff.c
index 0ad8a9ed8d195b279abfadc87831c96e26dd7f1a..7773928666ae56309dfa45c1a586a9ed44e4c752 100644 (file)
@@ -134,7 +134,7 @@ char *ms_time_new(void)
        {
        MS_TM *ret;
 
-       ret=(MS_TM *)Malloc(sizeof(MS_TM));
+       ret=(MS_TM *)OPENSSL_malloc(sizeof(MS_TM));
        if (ret == NULL)
                return(NULL);
        memset(ret,0,sizeof(MS_TM));
@@ -147,7 +147,7 @@ char *ms_time_new(void)
 void ms_time_free(char *a)
        {
        if (a != NULL)
-               Free(a);
+               OPENSSL_free(a);
        }
 
 void ms_time_get(char *a)