Skip to content
This repository was archived by the owner on Oct 8, 2024. It is now read-only.

Commit f4f05cb

Browse files
author
Yucong Sun
committed
Fix mudlist
1 parent 20e4ffa commit f4f05cb

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lib/daemons/imud/mail.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ protected nomask int mail_has_outgoing(string mudname)
3838

3939
protected nomask int mail_send_outgoing(string mudname, object socket)
4040
{
41-
mixed array requests = mail_requests[mudname];
41+
mixed *requests = mail_requests[mudname];
4242

4343
if (!sizeof(requests))
4444
{
@@ -69,7 +69,7 @@ private nomask void mail_add_request(string mudname, mixed *request)
6969
}
7070
}
7171

72-
public nomask void send_mail_message_to_mud(*packet, string mudname)
72+
public nomask void send_mail_message_to_mud(mixed *packet, string mudname)
7373
{
7474
if(previous_object() != find_object(IMAIL_D))
7575
{

lib/daemons/imud/mudlist.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ nomask mapping query_mudlist()
6161

6262
nomask int has_service(string mud, string service)
6363
{
64-
*inf;
64+
mixed *inf;
6565

6666
inf = mud_info[mud];
6767

0 commit comments

Comments
 (0)