diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-07-15 01:54:25 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-07-15 01:54:25 +0000 |
commit | 28d9c1750d3dfc4ddb8cb9056a18d073679ce6dd (patch) | |
tree | b03d054c53210eda92ca1942982f651be0a7f94d /lib/libc/hash/sha1.3 | |
parent | 25cd5ae9fcfc1df67e3f8ae81ad01e57b6184942 (diff) |
Add a missing const
Diffstat (limited to 'lib/libc/hash/sha1.3')
-rw-r--r-- | lib/libc/hash/sha1.3 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/hash/sha1.3 b/lib/libc/hash/sha1.3 index c016a828634..384f48af207 100644 --- a/lib/libc/hash/sha1.3 +++ b/lib/libc/hash/sha1.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: sha1.3,v 1.4 1997/07/12 20:06:03 millert Exp $ +.\" $OpenBSD: sha1.3,v 1.5 1997/07/15 01:54:23 millert Exp $ .\" .\" Copyright (c) 1997 Todd C. Miller <Todd.Miller@courtesan.com> .\" All rights reserved. @@ -47,7 +47,7 @@ .Ft void .Fn SHA1Init "SHA1_CTX *context" .Ft void -.Fn SHA1Update "SHA1_CTX *context" "u_char *data" "u_int len" +.Fn SHA1Update "SHA1_CTX *context" "const u_char *data" "u_int len" .Ft void .Fn SHA1Final "u_char digest[20]" "SHA1_CTX *context" .Ft void |