1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-16 03:24:07 +00:00
freebsd-ports/net/poptop/files/patch-pptpd.c
Sam Lawrance 9969531d09 Update to 1.2.3
PR:		ports/88260
Submitted by:	Serge Maslov <serge@maslov.biz>
Approved by:	Oleg M. Golovanov <olmi@rentech.ru> (maintainer, timeout 26 days)
2005-11-28 12:44:11 +00:00

20 lines
1.1 KiB
C

--- pptpd.c.orig Fri Oct 21 12:10:41 2005
+++ pptpd.c Fri Oct 21 12:12:30 2005
@@ -109,13 +109,13 @@
printf(" (default is /etc/ppp/options).\n");
#endif
printf(" [-p] [--pidfile file] Specifies the file to write the process ID to\n");
- printf(" (default is /var/run/pptpd.pid).\n");
+ printf(" (default is %s).\n",PIDFILE_DEFAULT);
#if !defined(BSDUSER_PPP)
printf(" [-s] [--speed baud] Specifies the baud speed for the PPP daemon\n");
- printf(" (default is 115200).\n");
+ printf(" (default is %s).\n",PPP_SPEED_DEFAULT);
#endif
printf(" [-t] [--stimeout seconds] Specifies the timeout for the first packet. This is a DOS protection\n");
- printf(" (default is 10).\n");
+ printf(" (default is %s).\n",STIMEOUT_DEFAULT);
printf(" [-v] [--version] Displays the pptpd version number.\n");
printf(" [-w] [--logwtmp] Update wtmp as users login.\n");