File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 54
54
#include "cache.h"
55
55
56
56
#ifndef MAP_LOCKED
57
- #define MAP_LOCKED 0
57
+ # define MAP_LOCKED 0
58
58
#endif
59
59
60
60
#if !defined(MAP_ANONYMOUS ) && defined(MAP_ANON )
61
- #define MAP_ANONYMOUS MAP_ANON
61
+ # define MAP_ANONYMOUS MAP_ANON
62
62
#endif
63
63
64
64
139
139
#define MAX_PASSWORD 1024
140
140
141
141
#ifdef __APPLE__
142
- static char sshfs_program_path [PATH_MAX ] = { 0 };
142
+ static char sshfs_program_path [PATH_MAX ] = { 0 };
143
143
#endif /* __APPLE__ */
144
144
145
145
struct buffer {
@@ -2941,7 +2941,7 @@ static void sshfs_write_end(struct request *req)
2941
2941
if (req -> reply_type != SSH_FXP_STATUS ) {
2942
2942
fprintf (stderr , "protocol error\n" );
2943
2943
} else if (buf_get_uint32 (& req -> reply , & serr ) != -1 &&
2944
- serr != SSH_FX_OK ) {
2944
+ serr != SSH_FX_OK ) {
2945
2945
sf -> write_error = - EIO ;
2946
2946
}
2947
2947
}
@@ -2997,7 +2997,7 @@ static void sshfs_sync_write_end(struct request *req)
2997
2997
if (req -> reply_type != SSH_FXP_STATUS ) {
2998
2998
fprintf (stderr , "protocol error\n" );
2999
2999
} else if (buf_get_uint32 (& req -> reply , & serr ) != -1 &&
3000
- serr != SSH_FX_OK ) {
3000
+ serr != SSH_FX_OK ) {
3001
3001
sio -> error = - EIO ;
3002
3002
}
3003
3003
}
You can’t perform that action at this time.
0 commit comments