Fixed a bug with the use of an external editor, and removed the limitation
that messages must have at least two lines.
This commit is contained in:
parent
38f9f18aa3
commit
3c0b1ef565
@ -3,6 +3,10 @@ v1.0.6.9 28-Sep-2016 - Andrew Leary
|
|||||||
1. Fixed compiler warnings while building the BBS. Thanks to
|
1. Fixed compiler warnings while building the BBS. Thanks to
|
||||||
Ken Bowley for the patches.
|
Ken Bowley for the patches.
|
||||||
|
|
||||||
|
2. Fixed a bug with the use of an external editor, and removed
|
||||||
|
a limitation that forced a message to have at least two lines.
|
||||||
|
Thanks to Ken Bowley for these patches as well.
|
||||||
|
|
||||||
v1.0.6.8 20-Jul-2016 - Andrew Leary
|
v1.0.6.8 20-Jul-2016 - Andrew Leary
|
||||||
|
|
||||||
1. Fixed the SETUP.sh script to handle installing on fresh
|
1. Fixed the SETUP.sh script to handle installing on fresh
|
||||||
|
@ -817,7 +817,7 @@ int Save_Msg(int IsReply, faddr *Dest)
|
|||||||
|
|
||||||
Syslog('b', "Entering Save_Msg() Line=%d, Dest=%s", Line, (Dest == NULL)?"NULL":"valid");
|
Syslog('b', "Entering Save_Msg() Line=%d, Dest=%s", Line, (Dest == NULL)?"NULL":"valid");
|
||||||
|
|
||||||
if (Line < 2)
|
if (Line < 1)
|
||||||
return TRUE;
|
return TRUE;
|
||||||
|
|
||||||
/* Saving message to disk */
|
/* Saving message to disk */
|
||||||
@ -2939,7 +2939,7 @@ int Ext_Edit()
|
|||||||
i++;
|
i++;
|
||||||
}
|
}
|
||||||
changed=TRUE;
|
changed=TRUE;
|
||||||
Line=i;
|
Line=i-1;
|
||||||
fclose(fd);
|
fclose(fd);
|
||||||
}
|
}
|
||||||
free(l);
|
free(l);
|
||||||
|
Reference in New Issue
Block a user