X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=crypto%2Fmem_clr.c;h=d76ef73179d050f5517ec00cfa5abc917fc7106c;hb=792ea008af17238d2af91301241973dc4f4f544c;hp=a1a4f93009c9465c13248f862771f5d1d4a2f809;hpb=4f22f40507fea3f272637eb8e00cadf1f34b10d9;p=oweals%2Fopenssl.git diff --git a/crypto/mem_clr.c b/crypto/mem_clr.c index a1a4f93009..d76ef73179 100644 --- a/crypto/mem_clr.c +++ b/crypto/mem_clr.c @@ -1,7 +1,7 @@ /* * Copyright 2002-2016 The OpenSSL Project Authors. All Rights Reserved. * - * Licensed under the OpenSSL license (the "License"). You may not use + * Licensed under the Apache License 2.0 (the "License"). You may not use * this file except in compliance with the License. You can obtain a copy * in the file LICENSE in the source distribution or at * https://www.openssl.org/source/license.html @@ -15,7 +15,7 @@ * the pointer and can't assume that it points to any function in * particular (such as memset, which it then might further "optimize") */ -typedef void *(*memset_t)(void *,int,size_t); +typedef void *(*memset_t)(void *, int, size_t); static volatile memset_t memset_func = memset;