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 766
Collapse All | Expand All

(-)kdelibs/kdesu/stub.cpp (-4 / +4 lines)
Lines 122-131 Link Here
122
            if (!path.isEmpty() && path[0] == ':')
122
            if (!path.isEmpty() && path[0] == ':')
123
                path = path.mid(1);
123
                path = path.mid(1);
124
	    if (m_User == "root") 
124
	    if (m_User == "root") 
125
		if (!path.isEmpty())
125
	       if (!path.isEmpty())
126
		    path = "/sbin:/bin:/usr/sbin:/usr/bin:" + path;
126
	          path = "/usr/local/sbin:/usr/sbin:/sbin:" + path;
127
		else
127
	       else
128
		    path = "/sbin:/bin:/usr/sbin:/usr/bin";
128
	          path = "/usr/local/sbin:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin";
129
	    writeLine(path);
129
	    writeLine(path);
130
	} else if (line == "user") {
130
	} else if (line == "user") {
131
	    writeLine(m_User);
131
	    writeLine(m_User);

Return to bug 766