diff options
Diffstat (limited to 'src/hyper/htinp.c')
-rw-r--r-- | src/hyper/htinp.c | 2 |
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; } |