+2000-07-04  H.J. Lu <hjl@lucon.org>
+
+       * utils/statd/log.c: Include <stdlib.h> for exit ().
+
+       * utils/statd/misc.c (xunlink): Add `{' and `}' to quiet the
+       gcc warning.
+
 2000-07-04  H.J. Lu <hjl@lucon.org>
 
        * configure.in (VERSION): Set to "0.1.9.1".
 
   tozap=alloca (strlen(path)+strlen(host)+2);
   sprintf (tozap, "%s/%s", path, host);
 
-  if (!check || !nlist_gethost(rtnl, host, 0))
+  if (!check || !nlist_gethost(rtnl, host, 0)) {
     if (unlink (tozap) == -1)
       log (L_ERROR, "unlink (%s): %s", tozap, strerror (errno));
     else
       dprintf (L_DEBUG, "Unlinked %s", tozap);
+  }
   else
     dprintf (L_DEBUG, "Not unlinking %s--host still monitored.", tozap);
 }