* Fix a missing slash separator in printed uri

This commit is contained in:
Aaron Griffin 2006-12-29 17:07:34 +00:00
parent 07c1309009
commit 37ae56e140

View file

@ -145,7 +145,7 @@ void cb_trans_evt(unsigned char event, void *data1, void *data2)
} }
break; break;
case PM_TRANS_EVT_PRINTURI: case PM_TRANS_EVT_PRINTURI:
MSG(NL, "%s%s\n", (char*)data1, (char*)data2); MSG(NL, "%s/%s\n", (char*)data1, (char*)data2);
break; break;
case PM_TRANS_EVT_RETRIEVE_START: case PM_TRANS_EVT_RETRIEVE_START:
MSG(NL, _(":: Retrieving packages from %s...\n"), (char*)data1); MSG(NL, _(":: Retrieving packages from %s...\n"), (char*)data1);