fix what i broke

This commit is contained in:
Andrew Pamment 2018-05-26 16:29:46 +10:00
parent d026b7ec24
commit 75f6d69b95

View File

@ -249,7 +249,7 @@ int main(int argc, char **argv) {
struct msg_t msg; struct msg_t msg;
uuid_t myuuid; uuid_t myuuid;
char msgid[37]; char msgid[37];
FILE *fptr; FILE *fptr, *fptr2;
struct stat st; struct stat st;
if (argc != 6) { if (argc != 6) {
@ -307,9 +307,9 @@ int main(int argc, char **argv) {
} }
// add config line // add config line
fptr = fopen(argv[1], "a"); fptr2 = fopen(argv[1], "a");
fprintf(fptr, "MSGAREA %d, %d, %s\n", msg.area, msg.daddr, argv[5]); fprintf(fptr2, "MSGAREA %d, %d, %s\n", msg.area, msg.daddr, argv[5]);
fclose(fptr); fclose(fptr2);
msg_to_nl(&msg); msg_to_nl(&msg);
@ -359,7 +359,7 @@ int main(int argc, char **argv) {
// remove config line // remove config line
remove_config_file_area(msg.area); remove_config_file_area(msg.area);
msg_to_nl(&msg); msg_to_nl(&msg);
fwrite(&msg, sizeof(struct msg_t), 1, fptr); fwrite(&msg, sizeof(struct msg_t), 1, fptr);