Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 78783
b: refs/heads/master
c: 8519660
h: refs/heads/master
i:
  78781: 8814d0d
  78779: d2b68f3
  78775: 2c5aac9
  78767: 004e49d
  78751: a4ac478
  78719: 62cc4c7
v: v3
  • Loading branch information
Ilpo Järvinen authored and David S. Miller committed Jan 28, 2008
1 parent f6062e2 commit 4f15116
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 12 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 112d8cfcbf4f5ef0cf669cb5864f1206972076d6
refs/heads/master: 8519660b98349fb922157fa2f5fb6e49eb17ad38
11 changes: 0 additions & 11 deletions trunk/net/core/utils.c
Original file line number Diff line number Diff line change
Expand Up @@ -91,17 +91,6 @@ EXPORT_SYMBOL(in_aton);
#define IN6PTON_NULL 0x20000000 /* first/tail */
#define IN6PTON_UNKNOWN 0x40000000

static inline int digit2bin(char c, int delim)
{
if (c == delim || c == '\0')
return IN6PTON_DELIM;
if (c == '.')
return IN6PTON_DOT;
if (c >= '0' && c <= '9')
return (IN6PTON_DIGIT | (c - '0'));
return IN6PTON_UNKNOWN;
}

static inline int xdigit2bin(char c, int delim)
{
if (c == delim || c == '\0')
Expand Down

0 comments on commit 4f15116

Please sign in to comment.