diff options
author | cinap_lenrek <cinap_lenrek@centraldogma> | 2011-08-17 23:27:31 +0200 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@centraldogma> | 2011-08-17 23:27:31 +0200 |
commit | c44b78f739a15469ea0d9a1cb3895abeb62e21fc (patch) | |
tree | 0289c607eede11a18aa3b08a0f770385a051272c /sys/src/9/ip/devip.c | |
parent | 72304eb350228a3267ef339905bef2f11659c4bf (diff) |
change definition of Chan.create to return a chan like open
Diffstat (limited to 'sys/src/9/ip/devip.c')
-rw-r--r-- | sys/src/9/ip/devip.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/src/9/ip/devip.c b/sys/src/9/ip/devip.c index 828345796..93a8514b4 100644 --- a/sys/src/9/ip/devip.c +++ b/sys/src/9/ip/devip.c @@ -506,10 +506,11 @@ ipopen(Chan* c, int omode) return c; } -static void +static Chan* ipcreate(Chan*, char*, int, ulong) { error(Eperm); + return 0; } static void |