diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2014-08-23 09:58:05 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2014-08-23 12:47:32 -0700 |
commit | a56ec9d720a7964bada837790e9c1f6ceef97861 (patch) | |
tree | 44dc1dc7ed10086f88b78823d7c892e2b25e2fb4 /doc | |
parent | 30b3fd74a27c80993e81dfcb33e33520ae8684fb (diff) |
Add const qualifiers to TRANS(Open...) address args
Required also adding const to static TRANS(ParseAddress) function which
they pass the address arg to for parsing.
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/xtrans.xml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/xtrans.xml b/doc/xtrans.xml index d89c247..5960dfa 100644 --- a/doc/xtrans.xml +++ b/doc/xtrans.xml @@ -393,7 +393,7 @@ errno will be available for debugging purposes. <funcsynopsis id='TRANSOpenCOTSClient'> <funcprototype> <funcdef>XtransConnInfo <function>TRANS(OpenCOTSClient)</function></funcdef> - <paramdef>char *<parameter>address</parameter></paramdef> + <paramdef>const char *<parameter>address</parameter></paramdef> </funcprototype> </funcsynopsis> <para> @@ -408,7 +408,7 @@ success, or <constant>NULL</constant> on failure. <funcsynopsis id='TRANSOpenCOTSServer'> <funcprototype> <funcdef>XtransConnInfo <function>TRANS(OpenCOTSServer)</function></funcdef> - <paramdef>char *<parameter>address</parameter></paramdef> + <paramdef>const char *<parameter>address</parameter></paramdef> </funcprototype> </funcsynopsis> <para> @@ -423,7 +423,7 @@ on failure. <funcsynopsis id='TRANSOpenCLTSClient'> <funcprototype> <funcdef>XtransConnInfo <function>TRANS(OpenCLTSClient)</function></funcdef> - <paramdef>char *<parameter>address</parameter></paramdef> + <paramdef>const char *<parameter>address</parameter></paramdef> </funcprototype> </funcsynopsis> <para> @@ -438,7 +438,7 @@ function returns an opaque transport connection object on success, or <funcsynopsis id='TRANSOpenCLTSServer'> <funcprototype> <funcdef>XtransConnInfo <function>TRANS(OpenCLTSServer)</function></funcdef> - <paramdef>char *<parameter>address</parameter></paramdef> + <paramdef>const char *<parameter>address</parameter></paramdef> </funcprototype> </funcsynopsis> <para> |