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

(-)kdenetwork-orig/krfb/krfb_httpd/krfb_httpd (-7 / +4 lines)
Lines 6-22 Link Here
6
fi
6
fi
7
7
8
read request url httptype || exit 0
8
read request url httptype || exit 0
9
url="${url/
9
url="${url/
/}"
10
/}"
10
httptype="${httptype/
/}"
11
httptype="${httptype/
12
/}"
13
11
14
if [ "x$httptype" != "x" ]; then
12
if [ "x$httptype" != "x" ]; then
15
	line="x"
13
	line="x"
16
	while [ -n "$line" ]; do
14
	while [ -n "$line" ]; do
17
		read line || exit 0
15
		read line || exit 0
18
		line="${line/
16
		line="${line/
/}"
19
/}"
20
	done
17
	done
21
fi
18
fi
22
# echo "url = $url, request = $request" >> /tmp/httpd.log
19
# echo "url = $url, request = $request" >> /tmp/httpd.log
Lines 38-44 Link Here
38
	content="
35
	content="
39
<HTML><HEAD><TITLE>$LOGNAME's desktop</TITLE></HEAD>
36
<HTML><HEAD><TITLE>$LOGNAME's desktop</TITLE></HEAD>
40
<BODY>
37
<BODY>
41
<APPLET CODE=VncViewer.class ARCHIVE=VncViewer.jar WIDTH=$width HEIGHT=$height>
38
<APPLET CODE=vncviewer/VNCViewer.class ARCHIVE=vncviewer.jar WIDTH=$width HEIGHT=$height>
42
	<param name=PORT value=$port>
39
	<param name=PORT value=$port>
43
</APPLET>
40
</APPLET>
44
</BODY></HTML>"
41
</BODY></HTML>"

Return to bug 1560