recognize 1 as true for reboot suggested and
authorDuncan Mac-Vicar P <dmacvicar@suse.de>
Fri, 9 May 2008 18:28:00 +0000 (18:28 +0000)
committerDuncan Mac-Vicar P <dmacvicar@suse.de>
Fri, 9 May 2008 18:28:00 +0000 (18:28 +0000)
restart suggested (bnc#388818)

package/libsatsolver.changes
tools/repo_updateinfoxml.c

index bc56508..54041d4 100644 (file)
@@ -1,4 +1,10 @@
 -------------------------------------------------------------------
+Fri May  9 20:26:52 CEST 2008 - dmacvicar@suse.de
+
+- recognize 1 as true for reboot suggested and
+  restart suggested (bnc#388818)
+
+-------------------------------------------------------------------
 Fri May  9 16:04:42 CEST 2008 - kkaempf@suse.de
 
 - move 'helix2solv' from satsolver-tools to satsolver-devel package
index 41381ff..90bb3d3 100644 (file)
@@ -534,7 +534,7 @@ endElement(void *userData, const char *name)
       {
        if (pd->content
            && (pd->content[0] == 'T'
-               || pd->content[0] == 't'))
+               || pd->content[0] == 't'|| pd->content[0] == '1'))
        {
          /* FIXME: this is per-package, the global flag should be computed at runtime */
          repodata_set_void(pd->data, pd->datanum, UPDATE_REBOOT);
@@ -547,7 +547,7 @@ endElement(void *userData, const char *name)
       {
        if (pd->content
            && (pd->content[0] == 'T'
-               || pd->content[0] == 't'))
+               || pd->content[0] == 't' || pd->content[0] == '1'))
        {
          /* FIXME: this is per-package, the global flag should be computed at runtime */
          repodata_set_void(pd->data, pd->datanum, UPDATE_RESTART);