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 */
|
||||
|
||||
switch(protocol) {
|
||||
switch (protocol)
|
||||
{
|
||||
case LCP: /* We must support some level of LCP */
|
||||
DEBUG1(("LCP Packet - "));
|
||||
lcp_rx(ctx, buffer, len);
|
||||
|
@ -113,7 +113,9 @@ static int tun_alloc(char *dev)
|
||||
int fd, err;
|
||||
|
||||
if ((fd = open("/dev/tun", O_RDWR)) < 0)
|
||||
{
|
||||
return fd;
|
||||
}
|
||||
|
||||
printf("tun fd:%i\n", fd);
|
||||
|
||||
@ -151,7 +153,9 @@ static int open_tty(char *dev)
|
||||
int err;
|
||||
|
||||
if ((fd = open(dev, O_RDWR)) < 0)
|
||||
{
|
||||
return fd;
|
||||
}
|
||||
|
||||
if ((err = make_nonblock(fd)) < 0)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user