From ff1aa8ff488e2fc5883f08dc415d0fcc355f05b0 Mon Sep 17 00:00:00 2001 From: Alexander Vdolainen Date: Sun, 26 Jul 2015 06:08:01 +0300 Subject: [PATCH] minor fix in man page; --- man/sxmsg_rreply.3 | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/man/sxmsg_rreply.3 b/man/sxmsg_rreply.3 index 9dfe9f7..9019bd9 100644 --- a/man/sxmsg_rreply.3 +++ b/man/sxmsg_rreply.3 @@ -3,6 +3,8 @@ sxmsg_rreply \- Function used to send a rapid reply without confirmation .SH SYNOPSIS .B #include +.br +.B #include .sp int sxmsg_rreply(sxmsg_t .BI *msg @@ -43,7 +45,7 @@ Not known yet. .nf .if t .ft CW char *buf = sxmsg_rapidbuf(msg); -int ln = snprintf(buf, MAX_BBUFLEN, "(is-done)"); +int ln = snprintf(buf, MAX_RBBUF_LEN, "(is-done)"); return sxmsg_rreply(msg, str, ln); .SH APPLICATION USAGE This function will be useful in RPC functions required to reply ASAP i.e. for getting some data. It RPC function takes a lot of time it's better to use other functions and postponed message processing.