summaryrefslogtreecommitdiffstats
path: root/cpukit/pppd
diff options
context:
space:
mode:
authorPeng Fan <van.freenix@gmail.com>2016-04-05 20:45:55 +0800
committerGedare Bloom <gedare@rtems.org>2016-04-13 12:09:25 -0400
commit33a1a4dbdf96b012384f5e8c018f3d958e5ddfc4 (patch)
treecc0e9bc5feaaeea2a7579a394d1c4bd0e9b26dfd /cpukit/pppd
parentpowerpc: Add FSL_EIS_MAS8 (diff)
downloadrtems-33a1a4dbdf96b012384f5e8c018f3d958e5ddfc4.tar.bz2
cpukit: pppd: fix compile warning
rcsid is defined, but not used. So discard it. Signed-off-by: Peng Fan <van.freenix@gmail.com>
Diffstat (limited to 'cpukit/pppd')
-rw-r--r--cpukit/pppd/auth.c4
-rw-r--r--cpukit/pppd/ccp.c4
-rw-r--r--cpukit/pppd/chap.c4
-rw-r--r--cpukit/pppd/demand.c4
-rw-r--r--cpukit/pppd/fsm.c4
-rw-r--r--cpukit/pppd/ipcp.c4
-rw-r--r--cpukit/pppd/lcp.c4
-rw-r--r--cpukit/pppd/magic.c4
-rw-r--r--cpukit/pppd/options.c4
-rw-r--r--cpukit/pppd/rtemsmain.c4
-rw-r--r--cpukit/pppd/sys-rtems.c5
-rw-r--r--cpukit/pppd/upap.c4
-rw-r--r--cpukit/pppd/utils.c4
13 files changed, 0 insertions, 53 deletions
diff --git a/cpukit/pppd/auth.c b/cpukit/pppd/auth.c
index fb84f1e8fc..9df1d32524 100644
--- a/cpukit/pppd/auth.c
+++ b/cpukit/pppd/auth.c
@@ -32,8 +32,6 @@
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*/
-#define RCSID "$Id$"
-
#include <stdio.h>
#include <stddef.h>
#include <stdlib.h>
@@ -75,8 +73,6 @@
#endif
#include "pathnames.h"
-static const char rcsid[] = RCSID;
-
/* The name by which the peer authenticated itself to us. */
char peer_authname[MAXNAMELEN];
diff --git a/cpukit/pppd/ccp.c b/cpukit/pppd/ccp.c
index d80df270f7..6ada96c22b 100644
--- a/cpukit/pppd/ccp.c
+++ b/cpukit/pppd/ccp.c
@@ -25,8 +25,6 @@
* OR MODIFICATIONS.
*/
-#define RCSID "$Id$"
-
#include <stdlib.h>
#include <string.h>
@@ -35,8 +33,6 @@
#include "ccp.h"
#include <net/ppp_comp.h>
-static const char rcsid[] = RCSID;
-
/*
* Command-line options.
*/
diff --git a/cpukit/pppd/chap.c b/cpukit/pppd/chap.c
index 3fe766f3a5..55f1896966 100644
--- a/cpukit/pppd/chap.c
+++ b/cpukit/pppd/chap.c
@@ -33,8 +33,6 @@
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*/
-#define RCSID "$Id$"
-
/*
* TODO:
*/
@@ -52,8 +50,6 @@
#include "chap_ms.h"
#endif
-static const char rcsid[] = RCSID;
-
/*
* Command-line options.
*/
diff --git a/cpukit/pppd/demand.c b/cpukit/pppd/demand.c
index a094a15f50..a5c13f71b6 100644
--- a/cpukit/pppd/demand.c
+++ b/cpukit/pppd/demand.c
@@ -17,8 +17,6 @@
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*/
-#define RCSID "$Id$";
-
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
@@ -43,8 +41,6 @@
#include "ipcp.h"
#include "lcp.h"
-static const char rcsid[] = RCSID;
-
static unsigned char *frame;
static int framelen;
static int framemax;
diff --git a/cpukit/pppd/fsm.c b/cpukit/pppd/fsm.c
index ce06401b1f..4ff17d8f95 100644
--- a/cpukit/pppd/fsm.c
+++ b/cpukit/pppd/fsm.c
@@ -17,8 +17,6 @@
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*/
-#define RCSID "$Id$"
-
/*
* TODO:
* Randomize fsm id on link/init.
@@ -32,8 +30,6 @@
#include "pppd.h"
#include "fsm.h"
-static const char rcsid[] = RCSID;
-
static void fsm_timeout(void *);
static void fsm_rconfreq(fsm *, u_char, u_char *, int);
static void fsm_rconfack(fsm *, int, u_char *, int);
diff --git a/cpukit/pppd/ipcp.c b/cpukit/pppd/ipcp.c
index fd23dddf9e..a9a8f240ae 100644
--- a/cpukit/pppd/ipcp.c
+++ b/cpukit/pppd/ipcp.c
@@ -17,8 +17,6 @@
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*/
-#define RCSID "$Id$"
-
/*
* TODO:
*/
@@ -40,8 +38,6 @@
#include <rtems/bsdnet/servers.h>
-static const char rcsid[] = RCSID;
-
/* global vars */
ipcp_options ipcp_wantoptions[NUM_PPP]; /* Options that we want to request */
ipcp_options ipcp_gotoptions[NUM_PPP]; /* Options that peer ack'd */
diff --git a/cpukit/pppd/lcp.c b/cpukit/pppd/lcp.c
index 9da1326a1a..e09e8fbfd5 100644
--- a/cpukit/pppd/lcp.c
+++ b/cpukit/pppd/lcp.c
@@ -17,8 +17,6 @@
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*/
-#define RCSID "$Id$";
-
/*
* TODO:
*/
@@ -33,8 +31,6 @@
#include "chap.h"
#include "magic.h"
-static const char rcsid[] = RCSID;
-
/*
* LCP-related command-line options.
*/
diff --git a/cpukit/pppd/magic.c b/cpukit/pppd/magic.c
index 3d297e5e67..46add2f1c3 100644
--- a/cpukit/pppd/magic.c
+++ b/cpukit/pppd/magic.c
@@ -17,8 +17,6 @@
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*/
-#define RCSID "$Id$"
-
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
@@ -28,8 +26,6 @@
#include "pppd.h"
#include "magic.h"
-static const char rcsid[] = RCSID;
-
/*
* magic_init - Initialize the magic number generator.
*
diff --git a/cpukit/pppd/options.c b/cpukit/pppd/options.c
index 8a39266474..9086e554d9 100644
--- a/cpukit/pppd/options.c
+++ b/cpukit/pppd/options.c
@@ -17,8 +17,6 @@
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*/
-#define RCSID "$Id$"
-
#include <ctype.h>
#include <stdio.h>
#include <errno.h>
@@ -53,8 +51,6 @@
#include <net/ppp_comp.h>
-static const char rcsid[] = RCSID;
-
/*
* Option variables and default values.
*/
diff --git a/cpukit/pppd/rtemsmain.c b/cpukit/pppd/rtemsmain.c
index 89ed77682e..030bebe064 100644
--- a/cpukit/pppd/rtemsmain.c
+++ b/cpukit/pppd/rtemsmain.c
@@ -17,8 +17,6 @@
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*/
-#define RCSID "$Id$"
-
#include <stdio.h>
#include <ctype.h>
#include <stdlib.h>
@@ -68,8 +66,6 @@
#include "atcp.h"
#endif
-static const char rcsid[] = RCSID;
-
/* interface vars */
char ifname[32]; /* Interface name */
int pppifunit; /* Interface unit number */
diff --git a/cpukit/pppd/sys-rtems.c b/cpukit/pppd/sys-rtems.c
index ac87957c1d..3fdca9ee0c 100644
--- a/cpukit/pppd/sys-rtems.c
+++ b/cpukit/pppd/sys-rtems.c
@@ -20,8 +20,6 @@
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*/
-#define RCSID "$Id$"
-
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
@@ -66,9 +64,6 @@ extern rtems_id rtems_pppd_taskid;
#include "fsm.h"
#include "ipcp.h"
-static const char rcsid[] = RCSID;
-
-
static int initdisc = -1; /* Initial TTY discipline for ppp_fd */
static int initfdflags = -1; /* Initial file descriptor flags for ppp_fd */
static int ppp_fd = -1; /* fd which is set to PPP discipline */
diff --git a/cpukit/pppd/upap.c b/cpukit/pppd/upap.c
index e8115a68c7..55700c5bda 100644
--- a/cpukit/pppd/upap.c
+++ b/cpukit/pppd/upap.c
@@ -17,8 +17,6 @@
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*/
-#define RCSID "$Id$"
-
/*
* TODO:
*/
@@ -29,8 +27,6 @@
#include "pppd.h"
#include "upap.h"
-static const char rcsid[] = RCSID;
-
static bool hide_password = true;
/*
diff --git a/cpukit/pppd/utils.c b/cpukit/pppd/utils.c
index af39226e24..cb1dab3728 100644
--- a/cpukit/pppd/utils.c
+++ b/cpukit/pppd/utils.c
@@ -17,8 +17,6 @@
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*/
-#define RCSID "$Id$"
-
#include <stdio.h>
#include <ctype.h>
#include <stdlib.h>
@@ -44,8 +42,6 @@
#include "pppd.h"
-static const char rcsid[] = RCSID;
-
static void pr_log(void *, char *, ...);
static void logit(int, char *, va_list);
static void vslp_printer(void *, char *, ...);