Skip to content

Commit

Permalink
[cmds] Change 'file' to identify as86 object file instead of bcc
Browse files Browse the repository at this point in the history
  • Loading branch information
ghaerr committed Nov 23, 2024
1 parent 7052343 commit 407d5af
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion elks/kernel/sys.c
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ int in_group_p(gid_t grp)
gid_t *pg;
char *p;

if (grp != (current->egid) {
if (grp != (current->egid)) {
pg = current->groups - 1;
p = (char *)(pg + NGROUPS);

Expand Down
2 changes: 1 addition & 1 deletion elkscmd/minix3/file.c
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ struct info {
0x00, 0x01, 0x02, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,
"ACK object file",
0x00, 0xa3, 0x86, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00,
"bcc object file",
"as86 object file",
0x00, 0x00, 0x00, 0x01, 0x07, 0xff, 0xff, 0xff, 0xff,
"MINIX-68k gnu object file",
0x00, 0x07, 0x01, 0x00, 0x00, 0xff, 0xff, 0xff, 0xff,
Expand Down

0 comments on commit 407d5af

Please sign in to comment.