aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDaniel Eischen <deischen@FreeBSD.org>2006-02-28 16:02:26 +0000
committerDaniel Eischen <deischen@FreeBSD.org>2006-02-28 16:02:26 +0000
commit0411773be72448d6756ab2dd29918c5ad6623ce8 (patch)
tree21fe4f7923c2c37ac3e1118be2fed69da4f740af /include
parentcea897b2bf64c88f6b488f8d5e3feb6cf9ae0339 (diff)
downloadsrc-0411773be72448d6756ab2dd29918c5ad6623ce8.tar.gz
src-0411773be72448d6756ab2dd29918c5ad6623ce8.zip
Const'ify arguments to a couple of functions to fix breakage
with -O2.
Notes
Notes: svn path=/head/; revision=156109
Diffstat (limited to 'include')
-rw-r--r--include/rpc/auth.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/rpc/auth.h b/include/rpc/auth.h
index 5cb9abd0368b..fd48421de8a0 100644
--- a/include/rpc/auth.h
+++ b/include/rpc/auth.h
@@ -299,7 +299,7 @@ __END_DECLS
*/
__BEGIN_DECLS
extern int getpublickey (const char *, char *);
-extern int getpublicandprivatekey (char *, char *);
+extern int getpublicandprivatekey (const char *, char *);
extern int getsecretkey (char *, char *, char *);
__END_DECLS