fix receiver uid
This commit is contained in:
parent
f372af3cc3
commit
d482e0647f
3 changed files with 4 additions and 4 deletions
|
@ -113,7 +113,7 @@ int main(int argc, char *argv[]) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
int receiverUidInt = atoi("1003");
|
int receiverUidInt = atoi(receiverUid);
|
||||||
|
|
||||||
send_message(receiverUidInt,groupFlag);
|
send_message(receiverUidInt,groupFlag);
|
||||||
|
|
||||||
|
|
|
@ -20,7 +20,7 @@ int main() {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Open the FIFO for reading
|
// Open the FIFO for reading
|
||||||
if (mkfifo(message_queue_path, 0420) == -1) {
|
if (mkfifo(message_queue_path, 0660) == -1) {
|
||||||
perror("mkfifo");
|
perror("mkfifo");
|
||||||
exit(EXIT_FAILURE);
|
exit(EXIT_FAILURE);
|
||||||
}
|
}
|
||||||
|
@ -32,7 +32,7 @@ int main() {
|
||||||
printf("FIFO '%s' does not exist. Exiting...\n", message_queue_path);
|
printf("FIFO '%s' does not exist. Exiting...\n", message_queue_path);
|
||||||
return 1;
|
return 1;
|
||||||
} else {
|
} else {
|
||||||
perror("open");
|
perror("open:");
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -97,7 +97,7 @@ int main() {
|
||||||
exit(EXIT_FAILURE);
|
exit(EXIT_FAILURE);
|
||||||
}
|
}
|
||||||
|
|
||||||
struct passwd *pw = getpwuid(msg.header.receiver);
|
struct passwd *pw = getpwuid(msg.header.receiver);
|
||||||
if (pw == NULL) {
|
if (pw == NULL) {
|
||||||
fprintf(stderr, "User with uid %d not found\n", msg.header.receiver);
|
fprintf(stderr, "User with uid %d not found\n", msg.header.receiver);
|
||||||
exit(EXIT_FAILURE);
|
exit(EXIT_FAILURE);
|
||||||
|
|
Loading…
Add table
Reference in a new issue