From f8711354d493aedaadd4f69bd5f7a7aa3b646f05 Mon Sep 17 00:00:00 2001 From: stpohle Date: Tue, 13 May 2003 22:52:19 +0000 Subject: [PATCH] forgot to put the do_special packet into the do_pkg function --- src/packets.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/packets.c b/src/packets.c index e84caf6..c3e7393 100644 --- a/src/packets.c +++ b/src/packets.c @@ -1071,6 +1071,9 @@ do_pkg (struct pkg *packet, _net_addr * addr) case (PKG_ill): do_ill ((struct pkg_ill *) packet, addr); break; + case (PKG_special): + do_special ((struct pkg_special *) packet, addr); + break; default: send_error (addr, "BomberClone: unknown data packet"); break;