summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDenis Kenzior <denkenz@gmail.com>2010-05-28 11:36:48 -0500
committerDenis Kenzior <denkenz@gmail.com>2010-05-28 11:36:48 -0500
commitb1e35794172f1907834dfe5a81c19d4a91c8bfae (patch)
tree644d970d1460c4578cd30faaae6baab52fc1bdae /src
parent93fafad18ec091fdde6da024538b2f73eda74611 (diff)
downloadofono-b1e35794172f1907834dfe5a81c19d4a91c8bfae.tar.bz2
stkutil: Fix comment style
Diffstat (limited to 'src')
-rw-r--r--src/stkutil.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/stkutil.c b/src/stkutil.c
index c3a5612d..3b536ed8 100644
--- a/src/stkutil.c
+++ b/src/stkutil.c
@@ -3614,9 +3614,11 @@ static gboolean build_dataobj_at_response(struct stk_tlv_builder *tlv,
if (data == NULL)
return TRUE;
- /* "If the AT Response string is longer than the maximum length
+ /*
+ * "If the AT Response string is longer than the maximum length
* capable of being transmitted to the UICC then the AT Response
- * string shall be truncated to this length by the terminal." */
+ * string shall be truncated to this length by the terminal."
+ */
len = strlen(data);
if (len > 240) /* Safe pick */
len = 240;