minix/lib/libsys/env_panic.c

18 lines
554 B
C
Raw Normal View History

#include "sysutil.h"
2005-04-21 16:53:53 +02:00
#include <string.h>
/*=========================================================================*
* env_panic *
*=========================================================================*/
void env_panic(const char *key)
2005-04-21 16:53:53 +02:00
{
static char value[EP_BUF_SIZE] = "<unknown>";
int s;
if ((s=env_get_param(key, value, sizeof(value))) == 0) {
2005-04-21 16:53:53 +02:00
if (s != ESRCH) /* only error allowed */
printf("WARNING: env_get_param() failed in env_panic(): %d\n", s);
2005-04-21 16:53:53 +02:00
}
panic("Bad environment setting: '%s = %s'\n", key, value);
2005-04-21 16:53:53 +02:00
}