diff --git a/src/modules/files/udp.c b/src/modules/files/udp.c index f4cffb4301e9e796216be2b1cbfdb8387aa93d10..6ed634dfc24b698d5734d74ddb18535280ef96b8 100644 --- a/src/modules/files/udp.c +++ b/src/modules/files/udp.c @@ -2,7 +2,7 @@ || This file is part of Pike. For copyright information see COPYRIGHT. || Pike is distributed under GPL, LGPL and MPL. See the file COPYING || for more information. -|| $Id: udp.c,v 1.57 2003/11/04 18:17:40 grubba Exp $ +|| $Id: udp.c,v 1.58 2003/11/04 22:31:29 bill Exp $ */ #define NO_PIKE_SHORTHAND @@ -10,7 +10,7 @@ #include "file_machine.h" -RCSID("$Id: udp.c,v 1.57 2003/11/04 18:17:40 grubba Exp $"); +RCSID("$Id: udp.c,v 1.58 2003/11/04 22:31:29 bill Exp $"); #include "fdlib.h" #include "pike_netlib.h" #include "interpret.h" @@ -871,7 +871,7 @@ void init_udp(void) ADD_STORAGE(struct udp_storage); PIKE_MAP_VARIABLE("_read_callback", OFFSETOF(udp_storage, read_callback), - tFunc(tNone, tInt_10), T_MIXED, ID_STATIC|ID_PRIVATE); + tFunc(tNone, tInt_10), PIKE_T_MIXED, ID_STATIC|ID_PRIVATE); ADD_FUNCTION("set_type",udp_set_type, tFunc(tInt tOr(tVoid,tInt),tObj),0);