Plan 9 from Bell Labs’s /usr/web/sources/contrib/uriel/changes/2005/1213/3

Copyright © 2021 Plan 9 Foundation.
Distributed under the MIT License.
Download the Plan 9 distribution.


Be consistent about newlines.
 [rsc] --rw-rw-r-- M 195156 glenda sys 3426 Dec 13 13:36 sys/src/cmd/tlssrv.c
	/n/sourcesdump/2005/1213/plan9/sys/src/cmd/tlssrv.c:96,101 - 
	/n/sourcesdump/2005/1214/plan9/sys/src/cmd/tlssrv.c:96,102
	  	}else{
	  		fprint(2, "%s: %s tls reports ", argv0, remotesys);
	  		vfprint(2, fmt, ap);
	+ 		fprint(2, "\n");
	  	}
	  	va_end(ap);
	  	return 0;
	/n/sourcesdump/2005/1213/plan9/sys/src/cmd/tlssrv.c:154,160 - 
	/n/sourcesdump/2005/1214/plan9/sys/src/cmd/tlssrv.c:155,161
	  		fd = dumper(fd);
	  	fd = tlsServer(fd, conn);
	  	if(fd < 0){
	- 		reporter("failed: %r\n");
	+ 		reporter("failed: %r");
	  		exits(0);
	  	}
	  	reporter("open\n");
	/n/sourcesdump/2005/1213/plan9/sys/src/cmd/tlssrv.c:170,176 - 
	/n/sourcesdump/2005/1214/plan9/sys/src/cmd/tlssrv.c:171,177
	  			close(p[1]);
	  			close(p[0]);
	  			exec(argv[0], argv);
	- 			reporter("can't exec %s: %r\n", argv[0]);
	+ 			reporter("can't exec %s: %r", argv[0]);
	  			_exits("exec");
	  		case -1:
	  			exits("fork");


Bell Labs OSI certified Powered by Plan 9

(Return to Plan 9 Home Page)

Copyright © 2021 Plan 9 Foundation. All Rights Reserved.
Comments to webmaster@9p.io.