By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 1707
Collapse All | Expand All

(-)tdeutils/tdessh/tdessh.cpp (-2 / +2 lines)
Lines 64-70 Link Here
64
    // Stop daemon and exit?
64
    // Stop daemon and exit?
65
    if (args->isSet("q"))
65
    if (args->isSet("q"))
66
    {
66
    {
67
	KDEsuClient client;
67
	TDEsuClient client;
68
	if (client.ping() == -1)
68
	if (client.ping() == -1)
69
	{
69
	{
70
	    kdError(1511) << "Daemon not running -- nothing to stop\n";
70
	    kdError(1511) << "Daemon not running -- nothing to stop\n";
Lines 116-122 Link Here
116
116
117
    // Check for daemon and start if necessary
117
    // Check for daemon and start if necessary
118
    bool have_daemon = true;
118
    bool have_daemon = true;
119
    KDEsuClient client;
119
    TDEsuClient client;
120
    if (!client.isServerSGID())
120
    if (!client.isServerSGID())
121
    {
121
    {
122
	kdWarning(1511) << "Daemon not safe (not sgid), not using it.\n";
122
	kdWarning(1511) << "Daemon not safe (not sgid), not using it.\n";

Return to bug 1707