Skip to content

Commit

Permalink
Choose more auspicious magic numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
tbodt committed Apr 12, 2020
1 parent 8074af6 commit 52e24ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/iOSFS.m
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ static int iosfs_flock(struct fd *fd, int operation) {
}

const struct fs_ops iosfs = {
.name = "ios", .magic = 0x7265616d,
.name = "ios", .magic = 0x694f5320,
.mount = iosfs_mount,
.umount = iosfs_umount,
.statfs = realfs_statfs,
Expand All @@ -408,7 +408,7 @@ static int iosfs_flock(struct fd *fd, int operation) {
};

const struct fs_ops iosfs_unsafe = {
.name = "ios-unsafe", .magic = 0x7265616e,
.name = "ios-unsafe", .magic = 0x694f5321,
.mount = iosfs_mount,
.umount = iosfs_umount,
.statfs = realfs_statfs,
Expand Down

0 comments on commit 52e24ca

Please sign in to comment.