summaryrefslogtreecommitdiff
path: root/libopie2/opienet/omanufacturerdb.cpp
Unidiff
Diffstat (limited to 'libopie2/opienet/omanufacturerdb.cpp') (more/less context) (show whitespace changes)
-rw-r--r--libopie2/opienet/omanufacturerdb.cpp25
1 files changed, 3 insertions, 22 deletions
diff --git a/libopie2/opienet/omanufacturerdb.cpp b/libopie2/opienet/omanufacturerdb.cpp
index bcce11f..006ae72 100644
--- a/libopie2/opienet/omanufacturerdb.cpp
+++ b/libopie2/opienet/omanufacturerdb.cpp
@@ -82,33 +82,14 @@ OManufacturerDB::OManufacturerDB()
82 while (!s.atEnd()) 82 while (!s.atEnd())
83 { 83 {
84 s >> addr; 84 s >> addr;
85 if ( !addr ) // read nothing!?
86 {
87 continue;
88 }
89 else
90 if ( addr[0] == '#' )
91 {
92 continue;
93 }
94 s.skipWhiteSpace();
95 s >> manu; 85 s >> manu;
96 s.skipWhiteSpace();
97 s >> extManu; 86 s >> extManu;
98 if ( extManu[0] == '#' ) // we have an extended manufacturer 87
99 {
100 s.skipWhiteSpace();
101 extManu = s.readLine();
102 odebug << "OManufacturerDB: read " << extManu << " as extended manufacturer string" << oendl;
103 manufacturersExt.insert( addr, extManu );
104 }
105 else
106 s.readLine();
107 odebug << "OManufacturerDB: read tuple " << addr << ", " << manu << oendl;
108 manufacturers.insert( addr, manu ); 88 manufacturers.insert( addr, manu );
89 manufacturersExt.insert( addr, extManu );
90 odebug << "OmanufacturerDB: parse '" << addr << "' as '" << manu << "' (" << extManu << ")" << oendl;
109 } 91 }
110 } 92 }
111
112} 93}
113 94
114 95