Email List: Xaustin-group-lX
[All Lists]

[1003.1(2008)/Issue 7 0000177]: mismatch between example description and

To: austin-group-l@xxxxxxxxxxxxx
Subject: [1003.1(2008)/Issue 7 0000177]: mismatch between example description and code
From: Austin Group Bug Tracker <noreply@xxxxxxxxxxxxx>
Date: Tue, 3 Nov 2009 22:32:28 +0000
Keywords: [1003.1(2008)/Issue 7] System Interfaces
The following issue has been SUBMITTED. 
====================================================================== 
http://austingroupbugs.net/view.php?id=177 
====================================================================== 
Reported By:                Don Cragun
Assigned To:                ajosey
====================================================================== 
Project:                    1003.1(2008)/Issue 7
Issue ID:                   177
Category:                   System Interfaces
Type:                       Error
Severity:                   Editorial
Priority:                   normal
Status:                     Under Review
Name:                       Don Cragun 
Organization:               N/A 
User Reference:             strtok() example 
Section:                    strtok() 
Page Number:                2041 
Line Number:                64700-64701 
Interp Status:              --- 
Final Accepted Text:         
====================================================================== 
Date Submitted:             2009-11-03 22:32 UTC
Last Modified:              2009-11-03 22:32 UTC
====================================================================== 
Summary:                    mismatch between example description and code
Description: 
P2041, L64688-64689 says that the code presented below looks for
combinations of
<space>, <tab>, or <new-line> characters, but the code on L64700-64701
doesn't
include <tab>.
Desired Action: 
<pre>
Change:
    key = strtok(line, " \n");
    data = strtok(NULL, " \n");
on P2041, L64700 to:
    key = strtok(line, " \t\n");
    data = strtok(NULL, " \t\n");
</pre>
====================================================================== 

Issue History 
Date Modified    Username       Field                    Change               
====================================================================== 
2009-11-03 22:32 Don Cragun     New Issue                                    
2009-11-03 22:32 Don Cragun     Status                   New => Under Review 
2009-11-03 22:32 Don Cragun     Assigned To               => ajosey          
2009-11-03 22:32 Don Cragun     Name                      => Don Cragun      
2009-11-03 22:32 Don Cragun     Organization              => N/A             
2009-11-03 22:32 Don Cragun     User Reference            => strtok() example
2009-11-03 22:32 Don Cragun     Section                   => strtok()        
2009-11-03 22:32 Don Cragun     Page Number               => 2041            
2009-11-03 22:32 Don Cragun     Line Number               => 64700-64701     
2009-11-03 22:32 Don Cragun     Interp Status             => ---             
======================================================================

<Prev in Thread] Current Thread [Next in Thread>