From: David van Moolenbroek Date: Tue, 27 Oct 2009 17:06:45 +0000 (+0000) Subject: DS: do not panic when sending reply fails X-Git-Tag: v3.1.5~3 X-Git-Url: http://zhaoyanbai.com/repos/?a=commitdiff_plain;h=20ca68f5c995a4829cff166e643824fe98a704a7;p=minix.git DS: do not panic when sending reply fails --- diff --git a/servers/ds/main.c b/servers/ds/main.c index 60bf2d51b..d6edc50ce 100644 --- a/servers/ds/main.c +++ b/servers/ds/main.c @@ -159,6 +159,6 @@ message *m_ptr; /* message buffer */ int s; s = send(who_e, m_ptr); /* send the message */ if (OK != s) - panic("DS", "unable to send reply!", s); + printf("DS: unable to send reply to %d: %d\n", who_e, s); }