Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 155317
b: refs/heads/master
c: 8711c67
h: refs/heads/master
i:
  155315: d3ec8e9
v: v3
  • Loading branch information
Bartlomiej Zolnierkiewicz authored and Linus Torvalds committed Jul 11, 2009
1 parent 989f1fb commit 06ec3b8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: d4fc4a7bfc2dee626f4fec1e209e58eaa4312de6
refs/heads/master: 8711c67bee675b4f7a378c71ad5a59c981ec3df0
4 changes: 2 additions & 2 deletions trunk/fs/isofs/inode.c
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@ static const struct dentry_operations isofs_dentry_ops[] = {

struct iso9660_options{
unsigned int rock:1;
unsigned int joliet:1;
unsigned int cruft:1;
unsigned int hide:1;
unsigned int showassoc:1;
Expand All @@ -151,7 +152,6 @@ struct iso9660_options{
unsigned int gid_set:1;
unsigned int utf8:1;
unsigned char map;
char joliet;
unsigned char check;
unsigned int blocksize;
mode_t fmode;
Expand Down Expand Up @@ -632,7 +632,7 @@ static int isofs_fill_super(struct super_block *s, void *data, int silent)
else if (isonum_711(vdp->type) == ISO_VD_SUPPLEMENTARY) {
sec = (struct iso_supplementary_descriptor *)vdp;
if (sec->escape[0] == 0x25 && sec->escape[1] == 0x2f) {
if (opt.joliet == 'y') {
if (opt.joliet) {
if (sec->escape[2] == 0x40)
joliet_level = 1;
else if (sec->escape[2] == 0x43)
Expand Down

0 comments on commit 06ec3b8

Please sign in to comment.