gdm2setup-0.5.3-fix-case-sensitive.patch 599 B

1234567891011
  1. diff -up gdm2setup-0.5.3-lucid/gdm2/gdm2gconf.py.fix-case-sensitive gdm2setup-0.5.3-lucid/gdm2/gdm2gconf.py
  2. --- gdm2setup-0.5.3-lucid/gdm2/gdm2gconf.py.fix-case-sensitive 2011-06-28 20:20:45.923692463 +0900
  3. +++ gdm2setup-0.5.3-lucid/gdm2/gdm2gconf.py 2011-06-28 20:22:51.979692463 +0900
  4. @@ -61,6 +61,7 @@ class GDM2Theme(object):
  5. def GetAutoLogin(self):
  6. try:
  7. config = ConfigParser.RawConfigParser()
  8. + config.optionxform = str
  9. config.read(self.GDMCONF_FILE)
  10. return config.getboolean('daemon', 'AutomaticLoginEnable')
  11. except: