mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
Changing status to offline when quitting wont overwrite last saved status
This commit is contained in:
parent
da8996dbdd
commit
8fac63f6df
|
@ -255,7 +255,7 @@ void change_nickname()
|
||||||
fclose(name_file);
|
fclose(name_file);
|
||||||
}
|
}
|
||||||
|
|
||||||
void change_status()
|
void change_status(int savetofile)
|
||||||
{
|
{
|
||||||
uint8_t status[MAX_USERSTATUS_LENGTH];
|
uint8_t status[MAX_USERSTATUS_LENGTH];
|
||||||
int i = 0;
|
int i = 0;
|
||||||
|
@ -274,10 +274,12 @@ void change_status()
|
||||||
sprintf(numstring, "\n[i] changed status to %s\n\n", (char*)status);
|
sprintf(numstring, "\n[i] changed status to %s\n\n", (char*)status);
|
||||||
printf(numstring);
|
printf(numstring);
|
||||||
|
|
||||||
FILE* status_file = NULL;
|
if (savetofile == 1) {
|
||||||
status_file = fopen("statusfile.txt", "w");
|
FILE* status_file = NULL;
|
||||||
fprintf(status_file, "%s", (char*)status);
|
status_file = fopen("statusfile.txt", "w");
|
||||||
fclose(status_file);
|
fprintf(status_file, "%s", (char*)status);
|
||||||
|
fclose(status_file);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void accept_friend_request()
|
void accept_friend_request()
|
||||||
|
@ -298,7 +300,7 @@ void line_eval(char* line)
|
||||||
char inpt_command = line[1];
|
char inpt_command = line[1];
|
||||||
|
|
||||||
if(inpt_command == 'f') {
|
if(inpt_command == 'f') {
|
||||||
add_friend(line);
|
add_friend();
|
||||||
}
|
}
|
||||||
|
|
||||||
else if (inpt_command == 'r') {
|
else if (inpt_command == 'r') {
|
||||||
|
@ -307,23 +309,23 @@ void line_eval(char* line)
|
||||||
}
|
}
|
||||||
|
|
||||||
else if (inpt_command == 'l') {
|
else if (inpt_command == 'l') {
|
||||||
list_friends(line);
|
list_friends();
|
||||||
}
|
}
|
||||||
|
|
||||||
else if (inpt_command == 'd') {
|
else if (inpt_command == 'd') {
|
||||||
delete_friend(line);
|
delete_friend();
|
||||||
}
|
}
|
||||||
/* Send message to friend */
|
/* Send message to friend */
|
||||||
else if (inpt_command == 'm') {
|
else if (inpt_command == 'm') {
|
||||||
message_friend(line);
|
message_friend();
|
||||||
}
|
}
|
||||||
|
|
||||||
else if (inpt_command == 'n') {
|
else if (inpt_command == 'n') {
|
||||||
change_nickname(line);
|
change_nickname();
|
||||||
}
|
}
|
||||||
|
|
||||||
else if (inpt_command == 's') {
|
else if (inpt_command == 's') {
|
||||||
change_status(line);
|
change_status(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
else if (inpt_command == 'a') {
|
else if (inpt_command == 'a') {
|
||||||
|
@ -332,8 +334,8 @@ void line_eval(char* line)
|
||||||
}
|
}
|
||||||
/* EXIT */
|
/* EXIT */
|
||||||
else if (inpt_command == 'q') {
|
else if (inpt_command == 'q') {
|
||||||
strcpy(line, "Offline");
|
strcpy(line, "---Offline");
|
||||||
change_status(line);
|
change_status(0);
|
||||||
exit(EXIT_SUCCESS);
|
exit(EXIT_SUCCESS);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -39,7 +39,7 @@ void list_friends();
|
||||||
void delete_friend();
|
void delete_friend();
|
||||||
void message_friend();
|
void message_friend();
|
||||||
void change_nickname();
|
void change_nickname();
|
||||||
void change_status();
|
void change_status(int savetofile);
|
||||||
void accept_friend_request();
|
void accept_friend_request();
|
||||||
void line_eval(char* line);
|
void line_eval(char* line);
|
||||||
void get_input();
|
void get_input();
|
||||||
|
|
Loading…
Reference in New Issue
Block a user