Use local servent.
git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@491 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
@@ -83,6 +83,7 @@ setpeer(int argc, char **argv)
|
|||||||
{
|
{
|
||||||
char *host;
|
char *host;
|
||||||
short port;
|
short port;
|
||||||
|
struct servent *sp;
|
||||||
|
|
||||||
if (connected) {
|
if (connected) {
|
||||||
printf("Already connected to %s, use close first.\n",
|
printf("Already connected to %s, use close first.\n",
|
||||||
@@ -97,6 +98,9 @@ setpeer(int argc, char **argv)
|
|||||||
code = -1;
|
code = -1;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
sp = getservbyname("ftp", "tcp");
|
||||||
|
if (sp == NULL)
|
||||||
|
errx(1, "You bastard. You removed ftp/tcp from services");
|
||||||
port = sp->s_port;
|
port = sp->s_port;
|
||||||
if (argc > 2) {
|
if (argc > 2) {
|
||||||
port = atoi(argv[2]);
|
port = atoi(argv[2]);
|
||||||
|
Reference in New Issue
Block a user