aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/rot13/libkvirot13.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/rot13/libkvirot13.cpp')
-rw-r--r--src/modules/rot13/libkvirot13.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/rot13/libkvirot13.cpp b/src/modules/rot13/libkvirot13.cpp
index c8ed5dfbf..622c23616 100644
--- a/src/modules/rot13/libkvirot13.cpp
+++ b/src/modules/rot13/libkvirot13.cpp
@@ -122,7 +122,7 @@ static bool rot13_module_init(KviModule * m)
d->m_szName = "ROT13";
d->m_szAuthor = "Aeriana";
d->m_szDescription = __tr2qs("The simple Caesar-cypher encryption that replaces each letter with the one 13 places forward or back along the alphabet; it is used to enclose the text in a sealed wrapper that the reader must choose to open - e.g. for posting things that might offend some readers, or spoilers.");
- d->m_iFlags = KVI_CRYPTENGINE_CAN_ENCRYPT;
+ d->m_iFlags = KviCryptEngine::CanEncrypt;
d->m_allocFunc = allocRot13Engine;
d->m_deallocFunc = deallocRot13Engine;
m->registerCryptEngine(d);