diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2022-12-12 20:41:17 +0000 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2022-12-12 20:41:17 +0000 |
commit | b85b00c2cdd580f88bb0ad91fd260b91370222af (patch) | |
tree | e8f5d641f452b27a178945669883d6f8eee9010d /sys/src/cmd/ip | |
parent | 383667cf31ce8a25d038fbb72705e3cbd5e0eb38 (diff) |
ip/pptpd: use /fd instead of #d
Diffstat (limited to 'sys/src/cmd/ip')
-rw-r--r-- | sys/src/cmd/ip/pptpd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/cmd/ip/pptpd.c b/sys/src/cmd/ip/pptpd.c index 3bf5b99df..3c7adccf6 100644 --- a/sys/src/cmd/ip/pptpd.c +++ b/sys/src/cmd/ip/pptpd.c @@ -1259,7 +1259,7 @@ fdclose(void) int fd, n, i; Dir *d, *p; - if((fd = open("#d", OREAD)) < 0) + if((fd = open("/fd", OREAD)) < 0) return; n = dirreadall(fd, &d); |