| Summary: | krdc fails to open a connection to a smb:// url | ||
|---|---|---|---|
| Product: | [Applications] krdc | Reporter: | Isaac Clerencia <isaac> |
| Component: | general | Assignee: | Jaison Lee <lee.jaison> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | unspecified | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Isaac Clerencia
2005-04-15 08:24:36 UTC
SVN commit 563039 by kling:
Handle "smb:/" as well as "smb://" URLs, since both are valid (or at least possible.)
BUG: 103932
M +2 -2 krdc.cpp
--- branches/KDE/3.5/kdenetwork/krdc/krdc.cpp #563038:563039
@@ -293,8 +293,8 @@
password = QString::null;
if (prot == PROTOCOL_AUTO) {
- if(s.startsWith("smb://")>0) { //we know it's more likely to be windows..
- s = "rdp://" + s.section("smb://", 1);
+ if(s.startsWith("smb:/")>0) { //we know it's more likely to be windows..
+ s = "rdp:/" + s.section("smb:/", 1);
prot = PROTOCOL_RDP;
} else if(s.contains("://") > 0) {
s = s.section("://",1);
This bug stills seems to exists as presented. I'm using KDE 3.5.8 with krdc. The behavior is the same as listed above. The message that I get after right clicking on the server share "Open Remote Desktop Connection to this machine" is: After confirming the remote session settings is: Connection attempt to host failed. smb://corte-gx-260/ where "corte-gx-260" is the windows machine name if I connect to the windows machine using the ip address of the machine rdp:/192.168.0.199 it connects just fine. The same behavior is also observed in Dolphin. It would seem that this is a krdc issue with Samba shares? |