summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDukePyrolator <DukePyrolator@5417fbe8-f217-4b02-8779-1006273d7864>2010-01-10 19:56:16 +0000
committerDukePyrolator <DukePyrolator@5417fbe8-f217-4b02-8779-1006273d7864>2010-01-10 19:56:16 +0000
commit20b5056315d7dc9f4cf9d4c2d85a351cbbee7b5a (patch)
tree3cfa697a12cad45672d1589f90ea83080e0c0eb5 /include
parentd66e92852961586d4c7884507871244ec96c22ee (diff)
changed the source argument of enc_decrypt to const
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2744 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'include')
-rw-r--r--include/extern.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/extern.h b/include/extern.h
index 81669993f..0ca8d4d3c 100644
--- a/include/extern.h
+++ b/include/extern.h
@@ -183,7 +183,7 @@ E void HostServSyncVhosts(NickAlias *na);
/**** encrypt.c ****/
E int enc_encrypt(const std::string &src, std::string &dest);
E int enc_encrypt_in_place(std::string &buf);
-E int enc_decrypt(std::string &src, std::string &dest);
+E int enc_decrypt(const std::string &src, std::string &dest);
E int enc_check_password(std::string &plaintext, std::string &password);
/**** hostserv.c ****/