Bug 178642

Summary: [patch] typo in man page for atol
Product: Documentation Reporter: Hiren Panchasara <hiren>
Component: Books & ArticlesAssignee: Hiren Panchasara <hiren>
Status: Closed FIXED    
Severity: Affects Only Me    
Priority: Normal    
Version: Latest   
Hardware: Any   
OS: Any   
Attachments:
Description Flags
file.diff none

Description Hiren Panchasara freebsd_committer freebsd_triage 2013-05-14 20:00:01 UTC
Michael Galassi (michaelgalassi@gmail.com) reports:

I keep getting rejected by the bug submitting form, sorry.

In FreeBSD 9.1-STABLE (and maybe elsewhere), strtoll is mistyped as
stroll (note the lack of the letter 't') twice in the compatibility
section of the manpage for atol(3).
Comment 1 Hiren Panchasara freebsd_committer freebsd_triage 2013-05-14 20:06:12 UTC
Responsible Changed
From-To: freebsd-doc->hiren

Grab.
Comment 2 dfilter service freebsd_committer freebsd_triage 2013-05-14 21:25:19 UTC
Author: hiren
Date: Tue May 14 20:25:07 2013
New Revision: 250639
URL: http://svnweb.freebsd.org/changeset/base/250639

Log:
  Fix a typo: It should be "strtoll" and not "stroll".
  
  PR:	178642
  Reported by:	Michael Galassi (michaelgalassi@gmail.com)
  Approved by:	sbruno (mentor)
  MFC after:	1 week

Modified:
  head/lib/libc/stdlib/atol.3

Modified: head/lib/libc/stdlib/atol.3
==============================================================================
--- head/lib/libc/stdlib/atol.3	Tue May 14 19:16:54 2013	(r250638)
+++ head/lib/libc/stdlib/atol.3	Tue May 14 20:25:07 2013	(r250639)
@@ -32,7 +32,7 @@
 .\"     @(#)atol.3	8.1 (Berkeley) 6/4/93
 .\" $FreeBSD$
 .\"
-.Dd February 1, 2009
+.Dd May 14, 2013
 .Dt ATOL 3
 .Os
 .Sh NAME
@@ -88,13 +88,13 @@ and
 functions are thin wrappers around
 .Fn strtol
 and
-.Fn stroll
+.Fn strtoll
 respectively, so these functions will affect the value of
 .Va errno
 in the same way that the
 .Fn strtol
 and
-.Fn stroll
+.Fn strtoll
 functions are able to.
 This behavior of
 .Fn atol
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org"
Comment 3 Hiren Panchasara freebsd_committer freebsd_triage 2014-02-07 22:43:49 UTC
State Changed
From-To: open->closed

Fixed.