]> diplodocus.org Git - nmh/blobdiff - uip/vmhsbr.c
Removed temporary probes added in commit
[nmh] / uip / vmhsbr.c
index a504220a1e53c22bce32e7a9f2952d1d9f27262a..4c0c8c186e887aa55be4e5cff7afc98596ca6809 100644 (file)
@@ -2,8 +2,6 @@
 /*
  * vmhsbr.c -- routines to help vmh along
  *
- * $Id$
- *
  * This code is Copyright (c) 2002, by the authors of nmh.  See the
  * COPYRIGHT file in the root directory of the nmh distribution for
  * complete copyright information.
@@ -17,7 +15,6 @@
 #include <h/mh.h>
 #include <h/vmhsbr.h>
 #include <h/utils.h>
-#include <errno.h>
 
 static char *types[] = {
     "OK",
@@ -157,11 +154,13 @@ str2peer (char code, char *str)
 int
 fmt2peer (char code, char *fmt, ...)
 {
+    int     return_value;
     va_list ap;
 
     va_start(ap, fmt);
-    return verr2peer (code, NULL, fmt, ap);
+    return_value = verr2peer (code, NULL, fmt, ap);
     va_end(ap);
+    return return_value;
 }