diff options
-rw-r--r-- | sbin/geom/misc/subr.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/sbin/geom/misc/subr.c b/sbin/geom/misc/subr.c index 1409eba..f7b2764 100644 --- a/sbin/geom/misc/subr.c +++ b/sbin/geom/misc/subr.c @@ -379,10 +379,15 @@ gctl_error(struct gctl_req *req, const char *error, ...) { va_list ap; - if (req->error != NULL) + if (req != NULL && req->error != NULL) return; va_start(ap, error); - vasprintf(&req->error, error, ap); + if (req != NULL) { + vasprintf(&req->error, error, ap); + } else { + vfprintf(stderr, error, ap); + fprintf(stderr, "\n"); + } va_end(ap); } |