Package: ssvnc / 1.0.29-2

Metadata

Package Version Patches format
ssvnc 1.0.29-2 3.0 (quilt)

Patch series

view the series file
Patch File delta Description
confusing_ h.patch | (download)

scripts/ssvnc | 7 4 + 3 - 0 !
1 file changed, 4 insertions(+), 3 deletions(-)

 improve handling of -h[e[l[p]]]
 Catches -he and -hel as well, instead of letting wish print its usage 
 message (that sounds like an error message).
ultraftp_path.patch | (download)

vnc_unixsrc/vncviewer/argsresources.c | 31 2 + 29 - 0 !
1 file changed, 2 insertions(+), 29 deletions(-)

 use hardcoded (and correct for the debian package) path to ultraftp.jar
 if SSVNC_ULTRA_FTP_JAR is unset.


buildflags.patch | (download)

Makefile | 4 2 + 2 - 0 !
1 file changed, 2 insertions(+), 2 deletions(-)

 pass cflags and ldflags to xmkmf-generated makefiles
 Pass CFLAGS and LDFLAGS through via ./Makefile as
 CDEBUGFLAGS and LOCAL_LDFLAGS to vnc_unixsrc/*/Makefile


nostrip.patch | (download)

Makefile | 1 0 + 1 - 0 !
1 file changed, 1 deletion(-)

 don't strip ssvncviewer; let dh_strip handle that (or not, depending on build options)


format security.patch | (download)

vnc_unixsrc/vncviewer/sockets.c | 16 8 + 8 - 0 !
vnc_unixsrc/vncviewer/vncviewer.c | 4 2 + 2 - 0 !
2 files changed, 10 insertions(+), 10 deletions(-)

 fix format-security warnings/errors
 Replaces fprintf(stderr, str) with fputs(str, stderr) (where str in
 most cases is argv[0]) and also one instance of sprintf (without
 format string) with snprintf (with format string).