]> sourceware.org Git - systemtap.git/commitdiff
none
authorfche <fche>
Sat, 3 Sep 2005 18:31:35 +0000 (18:31 +0000)
committerfche <fche>
Sat, 3 Sep 2005 18:31:35 +0000 (18:31 +0000)
stap.1.in

index 13f02e138a9b15624ede68fc1ddbd5eb220caa07..a2b3fb4702175149953ace26c6c95c75330ba093 100644 (file)
--- a/stap.1.in
+++ b/stap.1.in
@@ -362,8 +362,8 @@ function add_one (val) %{
   THIS->__retvalue = THIS->val + 1;
 %}
 function add_one_str (val) %{
-  strncpy (THIS->__retvalue, THIS->val, MAXSTRINGLEN);
-  strncat (THIS->__retvalue, "one", MAXSTRINGLEN);
+  strlcpy (THIS->__retvalue, THIS->val, MAXSTRINGLEN);
+  strlcat (THIS->__retvalue, "one", MAXSTRINGLEN);
 %}
 .ESAMPLE
 The function argument and return value types have to be inferred by
This page took 0.032428 seconds and 5 git commands to generate.