Copy from security:SELinux/setools based on submit request 34373 from user prusnak OBS-URL: https://build.opensuse.org/request/show/34373 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/setools?expand=0&rev=4
22 lines
713 B
Diff
22 lines
713 B
Diff
Index: sediff/result_item_render.c
|
|
===================================================================
|
|
--- sediff/result_item_render.c.orig
|
|
+++ sediff/result_item_render.c
|
|
@@ -27,6 +27,7 @@
|
|
#include "result_item_render.h"
|
|
|
|
#include <assert.h>
|
|
+#include <string.h>
|
|
|
|
static const char *form_name_map[] = {
|
|
"Added", "Added New Type", "Removed", "Removed Missing Type", "Modified"
|
|
@@ -139,7 +140,7 @@ void result_item_print_string_inline(Gtk
|
|
}
|
|
case ' ':
|
|
{
|
|
- if (current_tag != "modified") {
|
|
+ if ( strcmp( current_tag, "modified") != 0 ) {
|
|
gtk_text_buffer_insert_with_tags_by_name(tb, iter, s + start, end - start + 1, current_tag, NULL);
|
|
start = end + 1;
|
|
current_tag = "modified";
|