PPPD: Fix a few coding style problems

This commit is contained in:
Gregory Nutt 2015-09-01 17:28:17 -06:00
parent 1f7a8d2f8d
commit ae0d87c0cb
3 changed files with 41 additions and 36 deletions

View File

@ -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);

View File

@ -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)
{ {