Merge lp:~linuxjedi/drizzle/drizzle-bug-617507 into lp:~drizzle-trunk/drizzle/development

Proposed by Andrew Hutchings
Status: Merged
Approved by: Brian Aker
Approved revision: 1709
Merged at revision: 1713
Proposed branch: lp:~linuxjedi/drizzle/drizzle-bug-617507
Merge into: lp:~drizzle-trunk/drizzle/development
Diff against target: 12 lines (+1/-1)
1 file modified
plugin/session_dictionary/processlist.cc (+1/-1)
To merge this branch: bzr merge lp:~linuxjedi/drizzle/drizzle-bug-617507
Reviewer Review Type Date Requested Status
Drizzle Merge Team Pending
Review via email: mp+32648@code.launchpad.net

Description of the change

Change unauthenticated user message to fit in the 16 char limit to avoid drizzle client warning

To post a comment you must log in.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'plugin/session_dictionary/processlist.cc'
2--- plugin/session_dictionary/processlist.cc 2010-08-07 22:01:28 +0000
3+++ plugin/session_dictionary/processlist.cc 2010-08-13 23:50:55 +0000
4@@ -91,7 +91,7 @@
5 if (not tmp_sctx->getUser().empty())
6 push(tmp_sctx->getUser());
7 else
8- push("unauthenticated user");
9+ push(_("no user"));
10
11 /* HOST */
12 push(tmp_sctx->getIp());