]> git.tuebingen.mpg.de Git - paraslash.git/blobdiff - dccp_recv.c
string: Rename para_malloc() -> alloc().
[paraslash.git] / dccp_recv.c
index 318969afe3c123c611638e3954c4556d29c82e14..d3a18e90e8fca9d02ba49a13e1ef2ad4b3ae86a2 100644 (file)
@@ -1,8 +1,4 @@
-/*
- * Copyright (C) 2006 Andre Noll <maan@tuebingen.mpg.de>
- *
- * Licensed under the GPL v2. For licencing details see COPYING.
- */
+/* Copyright (C) 2006 Andre Noll <maan@tuebingen.mpg.de>, see file COPYING. */
 
 /** \file dccp_recv.c paraslash's dccp receiver */
 
@@ -80,7 +76,7 @@ static int dccp_recv_open(struct receiver_node *rn)
        /* Copy CCID preference list (u8 array required) */
        given = lls_opt_given(r_c);
        if (given) {
-               ccids = para_malloc(given);
+               ccids = alloc(given);
                fo = flowopt_new();
                for (i = 0; i < given; i++)
                        ccids[i] = lls_int32_val(i, r_c);