[Com0com-cvs] hub4com plugins.cpp,1.2,1.3
The virtual serial port driver for Windows.
Brought to you by:
vfrolov
From: Vyacheslav F. <vf...@us...> - 2008-08-20 09:38:56
|
Update of /cvsroot/com0com/hub4com In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv21406 Modified Files: plugins.cpp Log Message: Fixed unknown types printing Index: plugins.cpp =================================================================== RCS file: /cvsroot/com0com/hub4com/plugins.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** plugins.cpp 14 Apr 2008 07:32:03 -0000 1.2 --- plugins.cpp 20 Aug 2008 09:38:52 -0000 1.3 *************** *** 20,23 **** --- 20,26 ---- * * $Log$ + * Revision 1.3 2008/08/20 09:38:52 vfrolov + * Fixed unknown types printing + * * Revision 1.2 2008/04/14 07:32:03 vfrolov * Renamed option --use-port-module to --use-driver *************** *** 114,118 **** case PLUGIN_TYPE_FILTER: str << "filter"; break; case PLUGIN_TYPE_DRIVER: str << "driver"; break; ! default: str << type; } --- 117,121 ---- case PLUGIN_TYPE_FILTER: str << "filter"; break; case PLUGIN_TYPE_DRIVER: str << "driver"; break; ! default: str << "UNKNOWN(" << type << ")"; } |