From 63b65a20706def951dd25e531949b7bc556419eb Mon Sep 17 00:00:00 2001 From: Alan Coopersmith Date: Sat, 23 Aug 2014 10:17:57 -0700 Subject: Add const qualifiers to TRANS(CreateListener) port args Signed-off-by: Alan Coopersmith --- doc/xtrans.xml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'doc') diff --git a/doc/xtrans.xml b/doc/xtrans.xml index 5960dfa..2e16e79 100644 --- a/doc/xtrans.xml +++ b/doc/xtrans.xml @@ -226,8 +226,8 @@ typedef struct _Xtransport { int (*CreateListener)( XtransConnInfo, /* connection */ - char *, /* port */ - int /* flags */ + const char *, /* port */ + int /* flags */ ); int (*ResetListener)( @@ -480,7 +480,7 @@ Based on current usage, the complimentary function int TRANS(CreateListener) XtransConnInfo connection - char *port + const char *port int flags @@ -935,7 +935,7 @@ different transport type is added, or a transport dependent option is defined. int CreateListener struct _Xtransport *thistrans - char *port + const char *port int flags -- cgit v1.2.1