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
9e80356d
Commit
9e80356d
authored
21 years ago
by
Daniel Stenberg
Browse files
Options
Downloads
Patches
Plain Diff
Luck Call made win32 password prompting support backspace
parent
4a429529
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
CHANGES
+3
-0
3 additions, 0 deletions
CHANGES
RELEASE-NOTES
+2
-1
2 additions, 1 deletion
RELEASE-NOTES
src/getpass.c
+5
-0
5 additions, 0 deletions
src/getpass.c
with
10 additions
and
1 deletion
CHANGES
+
3
−
0
View file @
9e80356d
...
...
@@ -7,6 +7,9 @@
Changelog
Daniel (13 January 2004)
- Luke Call made the win32 version of the password prompting function support
backspace.
- Dan Fandrich fixed the hugehelp source file to contain both a compressed and
an uncompressed version in the distribution, so that more people easier can
build curl with the compressed version.
...
...
This diff is collapsed.
Click to expand it.
RELEASE-NOTES
+
2
−
1
View file @
9e80356d
...
...
@@ -19,6 +19,7 @@ This release includes the following changes:
This release includes the following bugfixes:
o the win32 password prompting supports backspace
o builds natively on AmigaOS (without unix emulation)
o ftps:// now uses port 990 by default
o the "configure --with-spnego" action was improved
...
...
@@ -79,6 +80,6 @@ advice from friends like these:
W. Rozycki, Nicolas Croiset, Josh Kapell, Gaz Iqbal, Dave May, Markus
Moeller, James Clancy, Giuseppe Attardi, swalkaus at yahoo.com, Steve Green,
Marty Kuhrt, Dominick Meglio, Diego Casorran, David Byron, John McGowan,
David J Meyer, Dan Fandrich, Pierre, Brian R Duffy
David J Meyer, Dan Fandrich, Pierre, Brian R Duffy
, Luke Call
Thanks! (and sorry if I forgot to mention someone)
This diff is collapsed.
Click to expand it.
src/getpass.c
+
5
−
0
View file @
9e80356d
...
...
@@ -203,6 +203,11 @@ char *getpass_r(const char *prompt, char *buffer, int buflen)
buffer
[
i
]
=
0
;
break
;
}
else
if
(
buffer
[
i
]
==
'\b'
)
/* remove this letter and if this is not the first key, remove the
previous one as well */
i
=
i
-
(
i
>=
1
?
2
:
1
);
}
/* if user didn't hit ENTER, terminate buffer */
if
(
i
==
buflen
)
...
...
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