Fix ftbfs
authorChristian Grothoff <christian@grothoff.org>
Sat, 25 Feb 2017 03:39:19 +0000 (04:39 +0100)
committerChristian Grothoff <christian@grothoff.org>
Sat, 25 Feb 2017 03:39:19 +0000 (04:39 +0100)
doc/gnunet-c-tutorial.pdf
doc/gnunet-c-tutorial.tex

index af541228b23fd3cf9464ab642c3c5283d03ea138..f0dfe58b3f271e845300189b9b035ab0f1136758 100644 (file)
Binary files a/doc/gnunet-c-tutorial.pdf and b/doc/gnunet-c-tutorial.pdf differ
index 84df14833f9161ea804b5defddeab2e296885ced..069c1838fe272058445730f43e5c43d65c32d928 100644 (file)
@@ -714,7 +714,7 @@ The complete MQ API can be found in {\tt gnunet\_mq\_lib.h}.
 The {\tt hanlders} array in the example above is incomplete.
 Here is where you will define which messages you expect to
 receive from the service, and which functions handle them.
-The {\tt error_cb} is a function that is to be called whenever
+The {\tt error\_cb} is a function that is to be called whenever
 there are errors communicating with the service.
 
 \subsubsection{Sending messages}
@@ -780,8 +780,8 @@ or variable size.  Variable size messages are managed using two
 callbacks, one to check that the message is well-formed, the other
 to actually process the message.  Fixed size messages are fully
 checked by the MQ-logic, and thus only need to provide the handler
-to process the message.  Note that the prefixes {\tt check_}
-and {\tt handle_} are mandatory.
+to process the message.  Note that the prefixes {\tt check\_}
+and {\tt handle\_} are mandatory.
 
 \lstset{language=c}
 \begin{lstlisting}