/*
* 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.
#include <h/mh.h>
#include <h/vmhsbr.h>
#include <h/utils.h>
-#include <errno.h>
static char *types[] = {
"OK",
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;
}