]> Zhao Yanbai Git Server - minix.git/commitdiff
DS: do not panic when sending reply fails
authorDavid van Moolenbroek <david@minix3.org>
Tue, 27 Oct 2009 17:06:45 +0000 (17:06 +0000)
committerDavid van Moolenbroek <david@minix3.org>
Tue, 27 Oct 2009 17:06:45 +0000 (17:06 +0000)
servers/ds/main.c

index 60bf2d51b74e2624b4bc9501d23a83177fdf212a..d6edc50ce60af3198ddfbbb68d56a1f6b097c228 100644 (file)
@@ -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);
 }