Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Correct a cast in winfsp_fuse #154

Merged
merged 2 commits into from Mar 26, 2018
Merged

Correct a cast in winfsp_fuse #154

merged 2 commits into from Mar 26, 2018

Conversation

benrubson
Copy link
Contributor

Hi,

This PR corrects the cast issue in winfsp_fuse.

Thank you 馃憤

Ben

@billziss-gh
Copy link
Collaborator

@benrubson thank you for the PR. I will also have to rebuild FUSE for Cygwin for x64 and x86 (in opt/cygfuse) after we incorporate your change.

In order for me to accept contributions to this project I require that you add your name and email address to the Contributors document: https://github.com/billziss-gh/winfsp/blob/master/Contributors.asciidoc

This effectively signs the document, assigns joint copyright to your change and identifies you as a contributor. You only need to do this one time on your first contribution.

Re: tests failing. This does not appear related to your changes. Unfortunately drives fail to mount in the alloted time in recent builds; this is not something that is related to your changes.

@benrubson
Copy link
Contributor Author

Thank you Bill, document just filled-in 馃憤

@billziss-gh billziss-gh merged commit 499a3d1 into winfsp:master Mar 26, 2018
@billziss-gh
Copy link
Collaborator

Your PR has been merged. Thank you for your contribution :)

@benrubson
Copy link
Contributor Author

A tiny one :) Thank you for merging 馃憤

@benrubson benrubson deleted the cast branch March 26, 2018 20:08
@billziss-gh
Copy link
Collaborator

Unfortunately this change does not allow me to build cygfuse. The issue is that Cygwin has a prototype for void *cygwin_create_path(...) which conflicts with out definition of char *cygwin_create_path(...).

I am changing this to the following:

static inline char *fsp_fuse_conv_to_win_path(const char *path)
{                                                              
    void *cygwin_create_path(unsigned, const void *);          
    return (char *)cygwin_create_path(                         
        0/*CCP_POSIX_TO_WIN_A*/ | 0x100/*CCP_RELATIVE*/,       
        path);                                                 
}                                                             

Can you please verify that it allows you to compile EncFS without problems?

@benrubson
Copy link
Contributor Author

Sorry for this :/
Just tested with your modification, if works perfectly 馃憤

@billziss-gh
Copy link
Collaborator

No problem. Thanks for testing. New commit in a few secs with all the changes included.

@billziss-gh
Copy link
Collaborator

Commit 1cab0f3 should address this.

Noire001 pushed a commit to Noire001/winfsp that referenced this pull request Sep 25, 2022
Correct a cast in winfsp_fuse
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants