Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
TLMSP OpenSSL
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
CYBER - Cyber Security
TS 103 523 MSP
TLMSP
TLMSP OpenSSL
Commits
474b8a97
Commit
474b8a97
authored
19 years ago
by
Andy Polyakov
Browse files
Options
Downloads
Patches
Plain Diff
Make cygwin work in directories mounted with 'text' attribute.
parent
53261831
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
crypto/bio/bss_file.c
+2
-3
2 additions, 3 deletions
crypto/bio/bss_file.c
e_os.h
+4
-0
4 additions, 0 deletions
e_os.h
with
6 additions
and
3 deletions
crypto/bio/bss_file.c
+
2
−
3
View file @
474b8a97
...
...
@@ -279,8 +279,7 @@ static long MS_CALLBACK file_ctrl(BIO *b, int cmd, long num, void *ptr)
_setmode
(
fd
,
_O_BINARY
);
#elif defined(OPENSSL_SYS_NETWARE) && defined(NETWARE_CLIB)
int
fd
=
fileno
((
FILE
*
)
ptr
);
/* Under CLib there are differences in file modes
*/
/* Under CLib there are differences in file modes */
if
(
num
&
BIO_FP_TEXT
)
_setmode
(
fd
,
O_TEXT
);
else
...
...
@@ -301,7 +300,7 @@ static long MS_CALLBACK file_ctrl(BIO *b, int cmd, long num, void *ptr)
else
_setmode
(
fd
,
_O_BINARY
);
}
#elif defined(OPENSSL_SYS_OS2)
#elif defined(OPENSSL_SYS_OS2)
|| defined(OPENSSL_SYS_WIN32_CYGWIN)
int
fd
=
fileno
((
FILE
*
)
ptr
);
if
(
num
&
BIO_FP_TEXT
)
setmode
(
fd
,
O_TEXT
);
...
...
This diff is collapsed.
Click to expand it.
e_os.h
+
4
−
0
View file @
474b8a97
...
...
@@ -408,6 +408,10 @@ static unsigned int _strlen31(const char *str)
# define setvbuf(a, b, c, d) setbuffer((a), (b), (d))
typedef
unsigned
long
clock_t
;
# endif
# ifdef OPENSSL_SYS_WIN32_CYGWIN
# include <io.h>
# include <fcntl.h>
# endif
# define OPENSSL_CONF "openssl.cnf"
# define SSLEAY_CONF OPENSSL_CONF
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment