Merge commit 'b1e7e97d3b60469b243b3b2e22c7d8cbd11c7c90'
[unleashed.git] / usr / src / cmd / rctladm / utils.c
blob1a7d5227a260e204b2a1c91279aae1b09b7e1fc3
1 /*
2 * CDDL HEADER START
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
19 * CDDL HEADER END
23 * Copyright (c) 2001, 2010, Oracle and/or its affiliates. All rights reserved.
26 #include <sys/param.h>
27 #include <libintl.h>
28 #include <string.h>
29 #include <stdlib.h>
30 #include <stdarg.h>
31 #include <stdio.h>
32 #include <errno.h>
34 #include "utils.h"
36 static char PNAME_FMT[] = "%s: ";
37 static char ERRNO_FMT[] = ": %s\n";
39 static char *pname;
41 /*PRINTFLIKE1*/
42 void
43 warn(const char *format, ...)
45 int err = errno;
46 va_list alist;
47 if (pname != NULL)
48 (void) fprintf(stderr, gettext(PNAME_FMT), pname);
49 va_start(alist, format);
50 (void) vfprintf(stderr, format, alist);
51 va_end(alist);
52 if (strchr(format, '\n') == NULL)
53 (void) fprintf(stderr, gettext(ERRNO_FMT), strerror(err));
56 /*PRINTFLIKE1*/
57 void
58 die(char *format, ...)
60 int err = errno;
61 va_list alist;
63 if (pname != NULL)
64 (void) fprintf(stderr, gettext(PNAME_FMT), pname);
65 va_start(alist, format);
66 (void) vfprintf(stderr, format, alist);
67 va_end(alist);
68 if (strchr(format, '\n') == NULL)
69 (void) fprintf(stderr, gettext(ERRNO_FMT), strerror(err));
70 exit(E_ERROR);
73 char *
74 setpname(char *arg0)
76 char *p = strrchr(arg0, '/');
78 if (p == NULL)
79 p = arg0;
80 else
81 p++;
82 pname = p;
83 return (pname);