diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2020-06-07 16:45:55 +0200 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2020-06-07 16:45:55 +0200 |
commit | 85ffa283f67b4bd139a4e28e82f0d1c7f6c53b3b (patch) | |
tree | bda14739441506cee82f48844c5f939ef9da5915 /sys/src/9/ip | |
parent | d2be4787c6e78df1a0fec1f6fdc75a616ecc1e1e (diff) |
devip: fix parseipmask() prototype in ip.h
Diffstat (limited to 'sys/src/9/ip')
-rw-r--r-- | sys/src/9/ip/ip.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/9/ip/ip.h b/sys/src/9/ip/ip.h index 9a444466b..01b294d67 100644 --- a/sys/src/9/ip/ip.h +++ b/sys/src/9/ip/ip.h @@ -623,7 +623,7 @@ extern void ndpsendsol(Fs*, Ipifc*, Arpent*); extern int parseether(uchar*, char*); extern vlong parseip(uchar*, char*); -extern vlong parseipmask(uchar*, char*); +extern vlong parseipmask(uchar*, char*, int); extern vlong parseipandmask(uchar*, uchar*, char*, char*); extern char* v4parseip(uchar*, char*); extern void maskip(uchar *from, uchar *mask, uchar *to); |