git: 9front

Download patch

ref: 3f06aaa6bb01fb2247521278a36363f157ae4785
parent: cabb2d386b1a94b22206e0dadf227c0e2bb771f8
author: cinap_lenrek <cinap_lenrek@felloff.net>
date: Mon Dec 12 15:41:17 EST 2022

ip/pptpd: use /fd instead of #d

--- a/sys/src/cmd/ip/pptpd.c
+++ b/sys/src/cmd/ip/pptpd.c
@@ -1259,7 +1259,7 @@
 	int fd, n, i;
 	Dir *d, *p;
 
-	if((fd = open("#d", OREAD)) < 0)
+	if((fd = open("/fd", OREAD)) < 0)
 		return;
 
 	n = dirreadall(fd, &d);
--