diff options
author | runge <runge@karlrunge.com> | 2010-05-08 19:53:33 -0400 |
---|---|---|
committer | runge <runge@karlrunge.com> | 2010-05-08 19:53:33 -0400 |
commit | a3c971bac6e99ac7c025f0ec22c04720f1946aca (patch) | |
tree | 69708b7b8fd9df73b02558cb95bd6c8d41a2aa05 /x11vnc/connections.c | |
parent | bcc2383c79c7598e8d9dab858ae3a6dc2a68aab6 (diff) | |
download | libtdevnc-a3c971bac6e99ac7c025f0ec22c04720f1946aca.tar.gz libtdevnc-a3c971bac6e99ac7c025f0ec22c04720f1946aca.zip |
x11vnc: tweaks to prepare_x11vnc_dist.sh. set cd->unixname in apply_opts().
Diffstat (limited to 'x11vnc/connections.c')
-rw-r--r-- | x11vnc/connections.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/x11vnc/connections.c b/x11vnc/connections.c index 246acae..d1af60e 100644 --- a/x11vnc/connections.c +++ b/x11vnc/connections.c @@ -160,9 +160,9 @@ char *list_clients(void) { * <id>:<ip>:<port>:<user>:<unix>:<hostname>:<input>:<loginview>:<time>, * 8+1+64+1+5+1+24+1+24+1+256+1+5+1+1+1+10+1 * 123.123.123.123:60000/0x11111111-rw, - * so count+1 * 500 must cover it. + * so count+1 * 1000 must cover it. */ - list = (char *) malloc((count+1)*500); + list = (char *) malloc((count+1)*1000); list[0] = '\0'; |