mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-06-07 13:35:00 +00:00
FSCORE-546
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@16572 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
312abee36e
commit
a55b15025c
@ -55,7 +55,6 @@
|
|||||||
WarnAsError="true"
|
WarnAsError="true"
|
||||||
DebugInformationFormat="3"
|
DebugInformationFormat="3"
|
||||||
DisableSpecificWarnings="4100;6053;4706"
|
DisableSpecificWarnings="4100;6053;4706"
|
||||||
EnablePREfast="true"
|
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedResourceCompilerTool"
|
Name="VCManagedResourceCompilerTool"
|
||||||
@ -138,7 +137,6 @@
|
|||||||
WarnAsError="true"
|
WarnAsError="true"
|
||||||
DebugInformationFormat="3"
|
DebugInformationFormat="3"
|
||||||
DisableSpecificWarnings="4100;6053;4706"
|
DisableSpecificWarnings="4100;6053;4706"
|
||||||
EnablePREfast="true"
|
|
||||||
/>
|
/>
|
||||||
<Tool
|
<Tool
|
||||||
Name="VCManagedResourceCompilerTool"
|
Name="VCManagedResourceCompilerTool"
|
||||||
|
@ -891,7 +891,7 @@ static unsigned char esl_console_complete(const char *buffer, const char *cursor
|
|||||||
|
|
||||||
if (global_handle->last_sr_event && global_handle->last_sr_event->body) {
|
if (global_handle->last_sr_event && global_handle->last_sr_event->body) {
|
||||||
char *r = global_handle->last_sr_event->body;
|
char *r = global_handle->last_sr_event->body;
|
||||||
char *w, *p;
|
char *w, *p1;
|
||||||
|
|
||||||
if (r) {
|
if (r) {
|
||||||
if ((w = strstr(r, "\n\nwrite="))) {
|
if ((w = strstr(r, "\n\nwrite="))) {
|
||||||
@ -901,8 +901,8 @@ static unsigned char esl_console_complete(const char *buffer, const char *cursor
|
|||||||
|
|
||||||
len = atoi(w);
|
len = atoi(w);
|
||||||
|
|
||||||
if ((p = strchr(w, ':'))) {
|
if ((p1= strchr(w, ':'))) {
|
||||||
w = p + 1;
|
w = p1+ 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
printf("%s\n\n\n", r);
|
printf("%s\n\n\n", r);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user