Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 277567
Collapse All | Expand All

(-)kload-0.9.4.old/kload.cpp (-1 / +1 lines)
Lines 87-93 Link Here
87
    for (;it != sv.end();++it)
87
    for (;it != sv.end();++it)
88
    {
88
    {
89
        const char *line = it->c_str();
89
        const char *line = it->c_str();
90
        char *colon = strchr(line,':');
90
        const char *colon = strchr(line,':');
91
        if (NULL != colon)  // we believe that this is a "real line"
91
        if (NULL != colon)  // we believe that this is a "real line"
92
        {
92
        {
93
            // determine actual device name
93
            // determine actual device name
(-)kload-0.9.4.old/netpanel.cpp (-1 / +1 lines)
Lines 114-120 Link Here
114
    {
114
    {
115
        const char *line = it->c_str();
115
        const char *line = it->c_str();
116
        
116
        
117
        char *colon = strchr(line,':');
117
        const char *colon = strchr(line,':');
118
        if (NULL != colon)  // we believe that this is a "real line"
118
        if (NULL != colon)  // we believe that this is a "real line"
119
        {
119
        {
120
            // determine actual device name
120
            // determine actual device name

Return to bug 277567