summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSalvatore Sanfilippo <antirez@gmail.com>2019-09-05 13:31:26 +0200
committerGitHub <noreply@github.com>2019-09-05 13:31:26 +0200
commitc1ccf0f188a5235c716e1e24fc19069946e38277 (patch)
tree82ce18e2e4127b706f75aa1b8623c94efb55ef2d
parenta50dad73c2bbe31deac64a0196ec5c839e0a3f22 (diff)
parentd6294d05cd429e35bcdfc1213371c8abfb91c62a (diff)
downloadredis-c1ccf0f188a5235c716e1e24fc19069946e38277.tar.gz
Merge pull request #6366 from oranagra/5.0_rm_reply_cstring
RM_ReplyWithCString was missing registration
-rw-r--r--src/module.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/module.c b/src/module.c
index f96316388..cd03498cb 100644
--- a/src/module.c
+++ b/src/module.c
@@ -5378,6 +5378,7 @@ void moduleRegisterCoreAPI(void) {
REGISTER_API(ReplySetArrayLength);
REGISTER_API(ReplyWithString);
REGISTER_API(ReplyWithStringBuffer);
+ REGISTER_API(ReplyWithCString);
REGISTER_API(ReplyWithNull);
REGISTER_API(ReplyWithCallReply);
REGISTER_API(ReplyWithDouble);