Browse Source

No need to force modifiable strings here

tags/v1.4.90
Pierre Ossman 9 years ago
parent
commit
8f30811bfe
2 changed files with 2 additions and 2 deletions
  1. 1
    1
      unix/vncconfig/vncExt.c
  2. 1
    1
      unix/vncconfig/vncExt.h

+ 1
- 1
unix/vncconfig/vncExt.c View File

@@ -278,7 +278,7 @@ Bool XVncExtSelectInput(Display* dpy, Window w, int mask)
return True;
}

Bool XVncExtConnect(Display* dpy, char* hostAndPort)
Bool XVncExtConnect(Display* dpy, const char* hostAndPort)
{
xVncExtConnectReq* req;
xVncExtConnectReply rep;

+ 1
- 1
unix/vncconfig/vncExt.h View File

@@ -54,7 +54,7 @@ void XVncExtFreeParamList(char** list);
Bool XVncExtSetServerCutText(Display* dpy, const char* str, int len);
Bool XVncExtGetClientCutText(Display* dpy, char** str, int* len);
Bool XVncExtSelectInput(Display* dpy, Window w, int mask);
Bool XVncExtConnect(Display* dpy, char* hostAndPort);
Bool XVncExtConnect(Display* dpy, const char* hostAndPort);
Bool XVncExtGetQueryConnect(Display* dpy, char** addr,
char** user, int* timeout, void** opaqueId);
Bool XVncExtApproveConnect(Display* dpy, void* opaqueId, int approve);

Loading…
Cancel
Save