aboutsummaryrefslogtreecommitdiff
path: root/src/cadet/cadet_api_drop_message.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/cadet/cadet_api_drop_message.c')
-rw-r--r--src/cadet/cadet_api_drop_message.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/cadet/cadet_api_drop_message.c b/src/cadet/cadet_api_drop_message.c
index d9f7e003e..2b031b5c0 100644
--- a/src/cadet/cadet_api_drop_message.c
+++ b/src/cadet/cadet_api_drop_message.c
@@ -11,7 +11,7 @@
11 WITHOUT ANY WARRANTY; without even the implied warranty of 11 WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Affero General Public License for more details. 13 Affero General Public License for more details.
14 14
15 You should have received a copy of the GNU Affero General Public License 15 You should have received a copy of the GNU Affero General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>. 16 along with this program. If not, see <http://www.gnu.org/licenses/>.
17 17
@@ -35,8 +35,8 @@
35 */ 35 */
36void 36void
37GNUNET_CADET_drop_message (struct GNUNET_MQ_Handle *mq, 37GNUNET_CADET_drop_message (struct GNUNET_MQ_Handle *mq,
38 struct GNUNET_CADET_ClientChannelNumber ccn, 38 struct GNUNET_CADET_ClientChannelNumber ccn,
39 uint16_t type) 39 uint16_t type)
40{ 40{
41 struct GNUNET_CADET_RequestDropCadetMessage *message; 41 struct GNUNET_CADET_RequestDropCadetMessage *message;
42 struct GNUNET_MQ_Envelope *env; 42 struct GNUNET_MQ_Envelope *env;
@@ -45,15 +45,15 @@ GNUNET_CADET_drop_message (struct GNUNET_MQ_Handle *mq,
45 45
46 message->ccn = ccn; 46 message->ccn = ccn;
47 message->type = type; 47 message->type = type;
48 48
49 GNUNET_log (GNUNET_ERROR_TYPE_INFO, 49 GNUNET_log (GNUNET_ERROR_TYPE_INFO,
50 "Dropping message for channel of type %s (%d)\n", type == GNUNET_MESSAGE_TYPE_CADET_CHANNEL_DESTROY ? "GNUNET_MESSAGE_TYPE_CADET_CHANNEL_DESTROY" : "UNKNOWN", type); 50 "Dropping message for channel of type %s (%d)\n", type ==
51 GNUNET_MESSAGE_TYPE_CADET_CHANNEL_DESTROY ?
52 "GNUNET_MESSAGE_TYPE_CADET_CHANNEL_DESTROY" : "UNKNOWN", type);
51 53
52 GNUNET_MQ_send (mq, env); 54 GNUNET_MQ_send (mq, env);
53
54}
55
56 55
56}
57 57
58 58
59/* end of cadet_api_drop_message.c */ 59/* end of cadet_api_drop_message.c */