~ubuntu-branches/ubuntu/jaunty/moon/jaunty

« back to all changes in this revision

Viewing changes to src/enums.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Jo Shields
  • Date: 2009-03-06 10:09:49 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20090306100949-pgxjxjqltaxi12rz
Tags: 1.0.1-0ubuntu1
New upstream release (LP: #338665)

Show diffs side-by-side

added added

removed removed

Lines of Context:
322
322
{
323
323
        int i;
324
324
        for (i = 0; emu [i].name; i++) {
325
 
                if (!g_strcasecmp (emu [i].name, str))
 
325
                if (!g_ascii_strcasecmp (emu [i].name, str))
326
326
                        return emu [i].value;
327
327
        }
328
328