mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
ab5bccd127
Suggested by: kjm@RINS.RYUKOKU.AC.JP
23 lines
679 B
Plaintext
23 lines
679 B
Plaintext
--- server/misc.c~ Fri Jul 29 12:03:54 1994
|
|
+++ server/misc.c Fri Jun 30 10:16:39 2000
|
|
@@ -788,12 +788,19 @@
|
|
|
|
if (client->username && client->username[0]) {
|
|
if (client->groupname && client->groupname[0]) {
|
|
+ if (strlen(DDUSER) + strlen(client->username) +
|
|
+ strlen(DDGROUP) + strlen(client->groupname) +
|
|
+ strlen(DDPATH) + 4 >= 256)
|
|
+ return ( -1 );
|
|
sprintf(dichome, "%s/%s:%s/%s:%s",
|
|
DDUSER, client->username,
|
|
DDGROUP, client->groupname,
|
|
DDPATH);
|
|
}
|
|
else {
|
|
+ if (strlen(DDUSER) + strlen(client->username) +
|
|
+ strlen(DDPATH) + 2 >= 256)
|
|
+ return ( -1 );
|
|
sprintf(dichome, "%s/%s:%s",
|
|
DDUSER, client->username,
|
|
DDPATH);
|