summaryrefslogtreecommitdiff
path: root/usr
diff options
context:
space:
mode:
authorGangadhar Mylapuram <Gangadhar.M@Sun.COM>2010-04-06 23:31:14 -0700
committerGangadhar Mylapuram <Gangadhar.M@Sun.COM>2010-04-06 23:31:14 -0700
commitaf6a63accf40878250435baa6f5bde2ca6b41428 (patch)
treef8c8614b53992c7ac1a2b13e9f8fa12c351fc0e3 /usr
parent821f6e6d598b0ac967eaf82b4178e5c930c072e2 (diff)
downloadillumos-gate-af6a63accf40878250435baa6f5bde2ca6b41428.tar.gz
6417547 poolbind -e doesn't work with command contains slash
Diffstat (limited to 'usr')
-rw-r--r--usr/src/cmd/pools/poolbind/poolbind.c12
1 files changed, 4 insertions, 8 deletions
diff --git a/usr/src/cmd/pools/poolbind/poolbind.c b/usr/src/cmd/pools/poolbind/poolbind.c
index 395a09bbdf..9791bb0c59 100644
--- a/usr/src/cmd/pools/poolbind/poolbind.c
+++ b/usr/src/cmd/pools/poolbind/poolbind.c
@@ -2,9 +2,8 @@
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
- * Common Development and Distribution License, Version 1.0 only
- * (the "License"). You may not use this file except in compliance
- * with the License.
+ * Common Development and Distribution License (the "License").
+ * You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* or http://www.opensolaris.org/os/licensing.
@@ -20,12 +19,9 @@
* CDDL HEADER END
*/
/*
- * Copyright 2005 Sun Microsystems, Inc. All rights reserved.
- * Use is subject to license terms.
+ * Copyright (c) 2001, 2010, Oracle and/or its affiliates. All rights reserved.
*/
-#pragma ident "%Z%%M% %I% %E% SMI"
-
/*
* poolbind - bind processes, tasks, and projects to pools, and query process
* pool bindings
@@ -198,7 +194,7 @@ exec_cmd(char *pool_name, char *argv[])
return;
}
- if (execvp(basename(argv[0]), argv) == -1)
+ if (execvp(argv[0], argv) == -1)
die(gettext("exec of %s failed"), argv[0]);
/*NOTREACHED*/
}