aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/imgact_shell.c
diff options
context:
space:
mode:
authorMatthew Dillon <dillon@FreeBSD.org>1999-01-29 22:59:43 +0000
committerMatthew Dillon <dillon@FreeBSD.org>1999-01-29 22:59:43 +0000
commit820ca326e1d4e8f25c04bfb1b12886fe47bca96b (patch)
tree94ac0ce9b9a119345a429dce205231d86765572b /sys/kern/imgact_shell.c
parent82d6780c9e1c90dc3dec946beef67d41d9cbb1b4 (diff)
Notes
Diffstat (limited to 'sys/kern/imgact_shell.c')
-rw-r--r--sys/kern/imgact_shell.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/imgact_shell.c b/sys/kern/imgact_shell.c
index e72b86dc9ec7..361cf1856e9b 100644
--- a/sys/kern/imgact_shell.c
+++ b/sys/kern/imgact_shell.c
@@ -23,7 +23,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: imgact_shell.c,v 1.16 1997/08/02 14:31:23 bde Exp $
+ * $Id: imgact_shell.c,v 1.17 1998/10/16 03:55:00 peter Exp $
*/
#include <sys/param.h>
@@ -134,5 +134,5 @@ exec_shell_imgact(imgp)
* Since `const' objects end up in the text segment, TEXT_SET is the
* correct directive to use.
*/
-static const struct execsw shell_execsw = { exec_shell_imgact, "#!" };
+static struct execsw shell_execsw = { exec_shell_imgact, "#!" };
EXEC_SET(shell, shell_execsw);