Skip to content
Snippets Groups Projects
Commit 6d01013e authored by deuce's avatar deuce
Browse files

Add blank line after error summary before the full error message.

parent 74996ee4
Branches
Tags
No related merge requests found
......@@ -31,4 +31,4 @@ make USE_SDL_AUDIO=1 STATIC_SDL=1 STATIC_CRYPTLIB=1 RELEASE=1 PREFIX=/usr
The package is generated and copied do a disk image which is then converted
with the following command:
hdiutil convert /Users/stephenhurd/Desktop/SyncTERM.dmg -format UDRO -o /synchronet/sbbs/web/root/syncterm.bbsdev.net/SyncTERM.dmg
hdiutil convert ~/Desktop/SyncTERM.dmg -format UDRO -o /synchronet/sbbs/web/root/syncterm.bbsdev.net/SyncTERM.dmg
......@@ -26,7 +26,7 @@ static void cryptlib_error_message(int status, char * msg)
char *errmsg;
int err_len;
sprintf(str,"Error %d %s",status, msg);
sprintf(str,"Error %d %s\r\n\r\n",status, msg);
cl.GetAttributeString(ssh_session, CRYPT_ATTRIBUTE_ERRORMESSAGE, NULL, &err_len);
errmsg=(char *)malloc(err_len+strlen(str)+5);
strcpy(errmsg, str);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment