From f9706c5f30e239181e715a032a9f8a5696289eb1 Mon Sep 17 00:00:00 2001 From: sobrado Date: Tue, 22 Apr 2014 15:22:04 +0000 Subject: [PATCH] add closing parenthesis. ok millert@ --- lib/libc/stdio/printf.3 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/libc/stdio/printf.3 b/lib/libc/stdio/printf.3 index dfc334abeeb..370dc48c7b6 100644 --- a/lib/libc/stdio/printf.3 +++ b/lib/libc/stdio/printf.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: printf.3,v 1.66 2014/04/19 16:48:41 jmc Exp $ +.\" $OpenBSD: printf.3,v 1.67 2014/04/22 15:22:04 sobrado Exp $ .\" .\" Copyright (c) 1990, 1991, 1993 .\" The Regents of the University of California. All rights reserved. @@ -33,7 +33,7 @@ .\" .\" @(#)printf.3 8.1 (Berkeley) 6/4/93 .\" -.Dd $Mdocdate: April 19 2014 $ +.Dd $Mdocdate: April 22 2014 $ .Dt PRINTF 3 .Os .Sh NAME @@ -872,7 +872,7 @@ for later interpolation by Be sure to use the proper secure idiom: .Bd -literal -offset indent ret = snprintf(buffer, sizeof(buffer), "%s", string); -if (ret == -1 || ret >= sizeof(buffer) +if (ret == -1 || ret >= sizeof(buffer)) goto toolong; .Ed .Pp -- 2.20.1