Date: Wed, 14 Oct 1998 09:20:07 -0700 From: Mike Smith <mike@smith.net.au> To: Darren Whittaker <djw@sage1.sagecorp.com> Cc: Mike Smith <mike@smith.net.au>, freebsd-current@FreeBSD.ORG, john.young@openmarket.com Subject: Re: problem in 3.0 Message-ID: <199810141620.JAA01488@dingo.cdrom.com> In-Reply-To: Your message of "Wed, 14 Oct 1998 10:12:57 MDT." <Pine.SOL.3.93.981014101158.9432A-100000@sage1.sagecorp.com>
next in thread | previous in thread | raw e-mail | index | archive | help
> The fact of the matter is that date only returned output once, why did it > not return output 10 times? No idea. I can't make it fail in that fashion here, on a range of -current systems from mid-September through yesterday's snapshot. Does the following: #include <stdio.h> #include <err.h> void main(void) { int i, j; char buf[256]; FILE *p; for (i = 0; i < 100; i++) { if ((p = popen("/bin/date", "r")) == NULL) err(1, "popen"); fgets(buf, sizeof(buf) - 1, p); printf(buf); if ((pclose(p)) == -1) err(1, "pclose"); } } do the "right" or the "wrong" thing? > -Darren -- \\ Sometimes you're ahead, \\ Mike Smith \\ sometimes you're behind. \\ mike@smith.net.au \\ The race is long, and in the \\ msmith@freebsd.org \\ end it's only with yourself. \\ msmith@cdrom.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199810141620.JAA01488>