about summary refs log tree commit diff
path: root/Src/exec.c
diff options
context:
space:
mode:
authorTanaka Akira <akr@users.sourceforge.net>1999-08-30 00:13:14 +0000
committerTanaka Akira <akr@users.sourceforge.net>1999-08-30 00:13:14 +0000
commit1a6b62b43d645851d96e21f8c2c3f4c7a2e4b475 (patch)
tree3f8df3ddb61e6e813d9eecd36f329db92e23c0c3 /Src/exec.c
parent7dffe765c708af25e0bb4ecf826188299f9b689f (diff)
downloadzsh-1a6b62b43d645851d96e21f8c2c3f4c7a2e4b475.tar.gz
zsh-1a6b62b43d645851d96e21f8c2c3f4c7a2e4b475.tar.xz
zsh-1a6b62b43d645851d96e21f8c2c3f4c7a2e4b475.zip
manual/7527
Diffstat (limited to 'Src/exec.c')
-rw-r--r--Src/exec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Src/exec.c b/Src/exec.c
index 4ebbf1307..5ee161fff 100644
--- a/Src/exec.c
+++ b/Src/exec.c
@@ -622,7 +622,7 @@ isreallycom(Cmdnam cn)
     else if (!cn->u.name)
 	return 0;
     else {
-	strcpy(fullnam, cn->u.name);
+	strcpy(fullnam, *(cn->u.name));
 	strcat(fullnam, "/");
 	strcat(fullnam, cn->nam);
     }