Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
TLMSP curl
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 curl
Commits
8ee564c2
Commit
8ee564c2
authored
20 years ago
by
Daniel Stenberg
Browse files
Options
Downloads
Patches
Plain Diff
Marty Kuhrt's VMS fixes
parent
5bfeb60a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
packages/vms/config-vms.h_with_ssl
+4
-0
4 additions, 0 deletions
packages/vms/config-vms.h_with_ssl
packages/vms/config-vms.h_without_ssl
+4
-0
4 additions, 0 deletions
packages/vms/config-vms.h_without_ssl
src/getpass.c
+11
-1
11 additions, 1 deletion
src/getpass.c
with
19 additions
and
1 deletion
packages/vms/config-vms.h_with_ssl
+
4
−
0
View file @
8ee564c2
/* MSK, 02/05/04, Hand edited for trail build on Alpha V7.3, DEC C 6.5-003 */
/* MSK, 03/09/04, Seems to work for all platforms I've built on so far. */
/* Added HAVE_SYS_IOCTL_H, IOCTL_3_ARGS and SIZEOF_CURL_OFF_T defines */
/* MSK, 06/04/04, Added HAVE_INET_NTOP */
/* Define cpu-machine-OS */
#ifdef __ALPHA
...
...
@@ -258,3 +259,6 @@
#else
#define SIZEOF_CURL_OFF_T 8
#endif
/* Somewhere around 7.12.0 HAVE_INET_NTOP was introduced. */
#define HAVE_INET_NTOP 1
This diff is collapsed.
Click to expand it.
packages/vms/config-vms.h_without_ssl
+
4
−
0
View file @
8ee564c2
/* MSK, 02/05/04, Hand edited for trail build on Alpha V7.3, DEC C 6.5-003 */
/* MSK, 03/09/04, Seems to work for all platforms I've built on so far. */
/* Added HAVE_SYS_IOCTL_H, IOCTL_3_ARGS and SIZEOF_CURL_OFF_T defines */
/* MSK, 06/04/04, Added HAVE_INET_NTOP */
/* Define cpu-machine-OS */
#ifdef __ALPHA
...
...
@@ -258,3 +259,6 @@
#else
#define SIZEOF_CURL_OFF_T 8
#endif
/* Somewhere around 7.12.0 HAVE_INET_NTOP was introduced. */
#define HAVE_INET_NTOP 1
This diff is collapsed.
Click to expand it.
src/getpass.c
+
11
−
1
View file @
8ee564c2
...
...
@@ -45,12 +45,22 @@
#include descrip
#include starlet
#include iodef
#include iosbdef
/*
#include iosbdef
*/
char
*
getpass_r
(
const
char
*
prompt
,
char
*
buffer
,
size_t
buflen
)
{
long
sts
;
short
chan
;
struct
_iosb
iosb
;
/* MSK, 23-JAN-2004, iosbdef.h wasn't in VAX V7.2 or CC 6.4 */
/* distribution so I created this. May revert back later to */
/* struct _iosb iosb; */
struct
_iosb
{
short
int
iosb
$
w_status
;
/* status */
short
int
iosb
$
w_bcnt
;
/* byte count */
int
unused
;
/* unused */
}
iosb
;
$
DESCRIPTOR
(
ttdesc
,
"TT"
);
buffer
[
0
]
=
'\0'
;
...
...
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