summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--scp.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index f38eb90bd..f1ddf8434 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,8 @@
120001215 120001215
2 - (stevesk) Old OpenBSD patch wasn't completely applied:
3 - markus@cvs.openbsd.org 2000/01/24 22:11:20
4 [scp.c]
5 allow '.' in usernames; from jedgar@fxp.org
2 - (stevesk) OpenBSD CVS updates: 6 - (stevesk) OpenBSD CVS updates:
3 - markus@cvs.openbsd.org 2000/12/13 16:26:53 7 - markus@cvs.openbsd.org 2000/12/13 16:26:53
4 [ssh-keyscan.c] 8 [ssh-keyscan.c]
diff --git a/scp.c b/scp.c
index 1f8de3881..ba19773a2 100644
--- a/scp.c
+++ b/scp.c
@@ -1049,7 +1049,7 @@ okname(cp0)
1049 c = *cp; 1049 c = *cp;
1050 if (c & 0200) 1050 if (c & 0200)
1051 goto bad; 1051 goto bad;
1052 if (!isalpha(c) && !isdigit(c) && c != '_' && c != '-') 1052 if (!isalpha(c) && !isdigit(c) && c != '_' && c != '-' && c != '.')
1053 goto bad; 1053 goto bad;
1054 } while (*++cp); 1054 } while (*++cp);
1055 return (1); 1055 return (1);