Revision: 42242
          http://brlcad.svn.sourceforge.net/brlcad/?rev=42242&view=rev
Author:   starseeker
Date:     2011-01-13 14:47:14 +0000 (Thu, 13 Jan 2011)

Log Message:
-----------
bu_strlen undefined, not seeing it in libbu - probably something going on, use 
strlen for now in cmake branch.

Modified Paths:
--------------
    brlcad/branches/cmake/src/conv/fast4-g.c

Modified: brlcad/branches/cmake/src/conv/fast4-g.c
===================================================================
--- brlcad/branches/cmake/src/conv/fast4-g.c    2011-01-13 14:33:55 UTC (rev 
42241)
+++ brlcad/branches/cmake/src/conv/fast4-g.c    2011-01-13 14:47:14 UTC (rev 
42242)
@@ -2080,11 +2080,11 @@
     }
 
     /* eliminate trailing blanks */
-    s_len = bu_strlen(line);
+    s_len = strlen(line);
     while (isspace(line[--s_len]))
        line[s_len] = '\0';
 
-    s_len = bu_strlen(line);
+    s_len = strlen(line);
     if (s_len > 80)
        s_len = 80;
 


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

------------------------------------------------------------------------------
Protect Your Site and Customers from Malware Attacks
Learn about various malware tactics and how to avoid them. Understand 
malware threats, the impact they can have on your business, and how you 
can protect your company and customers by using code signing.
http://p.sf.net/sfu/oracle-sfdevnl
_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to