blob: 1218355fad15cc7f12614d41b54cc4336dc1612b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
--- incoming/ppp.c.orig Tue Sep 10 02:35:12 1996
+++ incoming/ppp.c Tue Mar 3 17:19:05 1998
@@ -46,6 +46,7 @@
#include "mcap.h"
#include <sys/time.h>
#include <signal.h>
+#include <stdlib.h>
#define EOF -1
@@ -125,7 +126,7 @@
if (!lbuf)
error ("Can't allocate space for login string.\n");
strcpy (lbuf, modemcap.program);
- strcat (lbuf, " ");
+ strcat (lbuf, " -- ");
strcat (lbuf, (char *)ibuf);
modemcap.program = lbuf;
return;
|