1
0
mirror of https://github.com/openbsd/src.git synced 2024-12-22 16:42:56 -08:00

whitespace nit

This commit is contained in:
jca 2016-06-28 18:22:50 +00:00
parent cbc6bef23c
commit 27fbb483ac

View File

@ -1,4 +1,4 @@
/* $OpenBSD: privsep.c,v 1.60 2016/04/02 19:55:10 krw Exp $ */
/* $OpenBSD: privsep.c,v 1.61 2016/06/28 18:22:50 jca Exp $ */
/*
* Copyright (c) 2003 Anil Madhavapeddy <anil@recoil.org>
@ -433,7 +433,7 @@ open_pipe(char *cmd)
/* skip over leading | and whitespace */
if (cmd[0] != '|')
return (-1);
for(cmd++; *cmd && *cmd == ' '; cmd++)
for (cmd++; *cmd && *cmd == ' '; cmd++)
; /* nothing */
if (!*cmd)
return (-1);