PPPD: Fix a few coding style problems
This commit is contained in:
parent
1f7a8d2f8d
commit
ae0d87c0cb
@ -371,7 +371,8 @@ void ppp_upcall(struct ppp_context_s *ctx, u16_t protocol, u8_t *buffer, u16_t l
|
|||||||
{
|
{
|
||||||
/* Demux on protocol field */
|
/* Demux on protocol field */
|
||||||
|
|
||||||
switch(protocol) {
|
switch (protocol)
|
||||||
|
{
|
||||||
case LCP: /* We must support some level of LCP */
|
case LCP: /* We must support some level of LCP */
|
||||||
DEBUG1(("LCP Packet - "));
|
DEBUG1(("LCP Packet - "));
|
||||||
lcp_rx(ctx, buffer, len);
|
lcp_rx(ctx, buffer, len);
|
||||||
|
@ -113,7 +113,9 @@ static int tun_alloc(char *dev)
|
|||||||
int fd, err;
|
int fd, err;
|
||||||
|
|
||||||
if ((fd = open("/dev/tun", O_RDWR)) < 0)
|
if ((fd = open("/dev/tun", O_RDWR)) < 0)
|
||||||
|
{
|
||||||
return fd;
|
return fd;
|
||||||
|
}
|
||||||
|
|
||||||
printf("tun fd:%i\n", fd);
|
printf("tun fd:%i\n", fd);
|
||||||
|
|
||||||
@ -151,7 +153,9 @@ static int open_tty(char *dev)
|
|||||||
int err;
|
int err;
|
||||||
|
|
||||||
if ((fd = open(dev, O_RDWR)) < 0)
|
if ((fd = open(dev, O_RDWR)) < 0)
|
||||||
|
{
|
||||||
return fd;
|
return fd;
|
||||||
|
}
|
||||||
|
|
||||||
if ((err = make_nonblock(fd)) < 0)
|
if ((err = make_nonblock(fd)) < 0)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user