From 20b5056315d7dc9f4cf9d4c2d85a351cbbee7b5a Mon Sep 17 00:00:00 2001 From: DukePyrolator Date: Sun, 10 Jan 2010 19:56:16 +0000 Subject: [PATCH] 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 --- include/extern.h | 2 +- src/encrypt.c | 2 +- 2 files changed, 2 insertions(+), 2 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 ****/ diff --git a/src/encrypt.c b/src/encrypt.c index 628079297..29a63e54e 100644 --- a/src/encrypt.c +++ b/src/encrypt.c @@ -50,7 +50,7 @@ int enc_encrypt_in_place(std::string &buf) * allow decryption, and -1 if another failure occurred (e.g. destination * buffer too small). **/ -int enc_decrypt(std::string &src, std::string &dest) +int enc_decrypt(const std::string &src, std::string &dest) { size_t pos = src.find(":"); if (pos == std::string::npos)