aboutsummaryrefslogtreecommitdiff
path: root/src/hyper/htinp.c
diff options
context:
space:
mode:
authoralfredoport <doyenatccny@gmail.com>2008-08-29 23:04:35 +0000
committeralfredoport <doyenatccny@gmail.com>2008-08-29 23:04:35 +0000
commit496fe8b336293c1ca960eb3fad67ac005403ee31 (patch)
tree96f321e2d64df80a11a532360b652edf62052572 /src/hyper/htinp.c
parentc57b76ca8c51522c2f6b99999213aeb125252fca (diff)
downloadopen-axiom-496fe8b336293c1ca960eb3fad67ac005403ee31.tar.gz
Fixes to HyperDoc by Waldek Hebisch.
Diffstat (limited to 'src/hyper/htinp.c')
-rw-r--r--src/hyper/htinp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hyper/htinp.c b/src/hyper/htinp.c
index 6151b0f8..49520641 100644
--- a/src/hyper/htinp.c
+++ b/src/hyper/htinp.c
@@ -273,7 +273,7 @@ strCopy(char *s)
{
char *b = halloc(strlen(s) + 1,"String");
- strcat(b, s);
+ strcpy(b, s);
return b;
}