1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
|
Description: Upstream changes introduced in version 1.5.30a-2.1
This patch has been created by dpkg-source during the package build.
Here's the last changelog entry, hopefully it gives details on why
those changes were made:
.
xwpe (1.5.30a-2.1) unstable; urgency=low
.
[ Jari Aalto ]
* Non-maintainer upload.
- Update to packaging format "3.0 (quilt)".
* debian/compat
- Update to 7.
* debian/control
- (Build-Depends): update obsolete x-dev t o x11proto-core-dev.
(important; Closes: #579037).
Update to debhelper 7.1. Remove dpatch.
- (Homepage): Add new field.
- (Standards-Version): Update to 3.8.4.
* debian/copyright
- Point to GPL-2.
* debian/menu
- Add missing double quotes to values.
- Update obsolete "Apps/" to "Applications/".
* debian/README.Debian
- Fix spelling.
* debian/rules
- Remoeve dpatch; obsoleted by new packaging format.
* debian/source/format
- New file.
* debian/watch
- New file.
.
The person named in the Author field signed this changelog entry.
Author: Jari Aalto <jari.aalto@cante.net>
Bug-Debian: http://bugs.debian.org/579037
---
The information above should follow the Patch Tagging Guidelines, please
checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
are templates for supplementary fields that you might want to add:
Origin: <vendor|upstream|other>, <url of original patch>
Bug: <url in upstream bugtracker>
Bug-Debian: http://bugs.debian.org/<bugnumber>
Forwarded: <no|not-needed|url proving that it has been forwarded>
Reviewed-By: <name and email of someone who approved the patch>
Last-Update: <YYYY-MM-DD>
--- xwpe-1.5.30a.orig/we_wind.c
+++ xwpe-1.5.30a/we_wind.c
@@ -1372,7 +1372,7 @@ int e_schr_lst_wsv(char *str, int xa, in
&& e_mouse.x <= xa+n-1) ret = CDO;
#endif
if (ret == CDO && e_sv_window(xa+n, ya, &num, *df, f) == WPE_CR)
- strcpy(str, (*df)->name[num]);
+ (strcpy)(str, (*df)->name[num]);
} while(ret == CDO);
return(ret);
}
|