fix typo.

git-svn-id: svn+ssh://svn.savannah.nongnu.org/linphone/trunk@489 3f6dc0c8-ddfe-455d-9043-3cd528dc4637
This commit is contained in:
smorlat 2009-06-04 13:58:35 +00:00
parent 75648946a4
commit 8a9436d6f4

View file

@ -398,10 +398,10 @@ lpc_cmd_autoanswer(LinphoneCore *lc, char *args)
if (strstr(args,"enable")){
linphonec_set_autoanswer(TRUE);
linphonec_out("Auto answer disabled.\n");
linphonec_out("Auto answer enabled.\n");
}else if (strstr(args,"disable")){
linphonec_set_autoanswer(FALSE);
linphonec_out("Auto answer enabled.\n");
linphonec_out("Auto answer disabled.\n");
}else return 0;
return 1;
}