Merge pull request #593 (Full URL Support in bitcoin-qt)

This commit is contained in:
Wladimir J. van der Laan
2012-01-26 19:00:02 +01:00
17 changed files with 212 additions and 6 deletions

View File

@@ -273,7 +273,7 @@ bool AppInit2(int argc, char* argv[])
#ifndef QT_GUI
for (int i = 1; i < argc; i++)
if (!IsSwitchChar(argv[i][0]))
if (!IsSwitchChar(argv[i][0]) && !(strlen(argv[i]) > 7 && strncasecmp(argv[i], "bitcoin:", 8) == 0))
fCommandLine = true;
if (fCommandLine)