Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 13846
b: refs/heads/master
c: 6911408
h: refs/heads/master
v: v3
  • Loading branch information
Steve French committed Nov 11, 2005
1 parent ad535b8 commit 5da3777
Show file tree
Hide file tree
Showing 2 changed files with 4 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: 84cdda8a1966288de26be5cecf7702d378861ff9
refs/heads/master: 69114089b75e039f531a3cb9e5e9d8c610679320
5 changes: 3 additions & 2 deletions trunk/fs/cifs/cifs_unicode.c
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,11 @@ cifs_strtoUCS(wchar_t * to, const char *from, int len,
cERROR(1,
("cifs_strtoUCS: char2uni returned %d",
charlen));
to[i] = cpu_to_le16(0x003f); /* a question mark */
/* A question mark */
to[i] = (wchar_t)cpu_to_le16(0x003f);
charlen = 1;
} else
to[i] = cpu_to_le16(to[i]);
to[i] = (wchar_t)cpu_to_le16(to[i]);

}

Expand Down

0 comments on commit 5da3777

Please sign in to comment.