svn commit: r303550 - stable/11/bin/ps

Konstantin Belousov kib at FreeBSD.org
Sat Jul 30 09:46:30 UTC 2016


Author: kib
Date: Sat Jul 30 09:46:29 2016
New Revision: 303550
URL: https://svnweb.freebsd.org/changeset/base/303550

Log:
  MFC r303213:
  Add missed required call to xo_finish() when only header is printed.
  
  Approved by:	re (gjb)

Modified:
  stable/11/bin/ps/ps.c
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/bin/ps/ps.c
==============================================================================
--- stable/11/bin/ps/ps.c	Sat Jul 30 09:28:13 2016	(r303549)
+++ stable/11/bin/ps/ps.c	Sat Jul 30 09:46:29 2016	(r303550)
@@ -612,6 +612,7 @@ main(int argc, char *argv[])
 
 	if (nkept == 0) {
 		printheader();
+		xo_finish();
 		exit(1);
 	}
 


More information about the svn-src-all mailing list