Hello community, here is the log from the commit of package jhead checked in at Sun Dec 17 12:19:59 CET 2006. -------- --- jhead/jhead.changes 2006-10-20 15:20:11.000000000 +0200 +++ /mounts/work_src_done/STABLE/jhead/jhead.changes 2006-12-16 12:23:15.000000000 +0100 @@ -1,0 +2,5 @@ +Sat Dec 16 12:22:47 CET 2006 - prusnak@suse.cz + +- fixed comparison with string literal (strcmp.patch) [#226477] + +------------------------------------------------------------------- New: ---- jhead-2.6-strcmp.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ jhead.spec ++++++ --- /var/tmp/diff_new_pack.Z4WxKj/_old 2006-12-17 12:19:47.000000000 +0100 +++ /var/tmp/diff_new_pack.Z4WxKj/_new 2006-12-17 12:19:47.000000000 +0100 @@ -15,11 +15,12 @@ Group: Productivity/Graphics/Other Autoreqprov: on Version: 2.6 -Release: 1 +Release: 12 Requires: /usr/bin/jpegtran Summary: Tool to Manipulate the Nonimage Part of EXIF Compliant JPEG Files URL: http://www.sentex.net/~mwandel/jhead/ Source: %{name}-%{version}.tar.bz2 +Patch: %{name}-%{version}-strcmp.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build %description @@ -38,6 +39,7 @@ %prep %setup +%patch %build make CC="gcc $RPM_OPT_FLAGS" @@ -58,6 +60,8 @@ %_mandir/man1/jhead.1.gz %changelog -n jhead +* Sat Dec 16 2006 - prusnak@suse.cz +- fixed comparison with string literal (strcmp.patch) [#226477] * Fri Oct 20 2006 - sbrabec@suse.cz - Updated to version 2.6: * Compilation and bug fixes ++++++ jhead-2.6-strcmp.patch ++++++ --- jhead.c +++ jhead.c @@ -820,7 +820,7 @@ RelativeName(OutFileName, ThumbSaveName, FileName); if (SaveThumbnail(OutFileName)){ - if (OutFileName != "-"){ + if (strcmp(OutFileName,"-")){ printf("Created: '%s'\n", OutFileName); } } ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun... --------------------------------------------------------------------- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org
participants (1)
-
root@suse.de