~ubuntu-branches/ubuntu/trusty/ldm/trusty-proposed

« back to all changes in this revision

Viewing changes to src/greeter_iface.c

  • Committer: Bazaar Package Importer
  • Author(s): Vagrant Cascadian
  • Date: 2010-04-19 15:28:59 UTC
  • mfrom: (3.3.2 upstream)
  • mto: This revision was merged to the branch mainline in revision 14.
  • Revision ID: james.westby@ubuntu.com-20100419152859-s133bph9xnbdubuh
Tags: upstream-2.1.2
ImportĀ upstreamĀ versionĀ 2.1.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
118
118
    }
119
119
    ldm.password[t] = '\0';
120
120
    g_free(prompt);
121
 
    set_message(_("<b>Verifying password.  Please wait.</b>"));
 
121
 
 
122
    gchar * verify_password_msg;
 
123
    verify_password_msg=g_strconcat("<b>", _("Verifying password.  Please wait."), "</b>", NULL);
 
124
    set_message(verify_password_msg);
 
125
    g_free(verify_password_msg);
 
126
 
122
127
    return 0;
123
128
}
124
129