Commit 3d9e66bd authored by claes's avatar claes

Bugfix in argument check, server id was not optional

parent 9cdb45fb
/* /*
* Proview $Id: opc_provider.cpp,v 1.17 2008-10-31 12:51:29 claes Exp $ * Proview $Id: opc_provider.cpp,v 1.18 2008-11-25 08:13:26 claes Exp $
* Copyright (C) 2005 SSAB Oxelsund AB. * Copyright (C) 2005 SSAB Oxelsund AB.
* *
* This program is free software; you can redistribute it and/or * This program is free software; you can redistribute it and/or
...@@ -1274,7 +1274,7 @@ void opc_provider::errlog( std::string* item, std::vector<s0__OPCError *>& errve ...@@ -1274,7 +1274,7 @@ void opc_provider::errlog( std::string* item, std::vector<s0__OPCError *>& errve
void usage() void usage()
{ {
cout << "remote_pvd_pwrcli Proview provider client" << endl << endl << cout << "opc_provider Proview Opc client" << endl << endl <<
"Arguments: " << endl << "Arguments: " << endl <<
" 1 Opc server URL" << endl << " 1 Opc server URL" << endl <<
" 2 Extern volume id" << endl << " 2 Extern volume id" << endl <<
...@@ -1291,7 +1291,7 @@ int main(int argc, char *argv[]) ...@@ -1291,7 +1291,7 @@ int main(int argc, char *argv[])
int server_id; int server_id;
/* Read arguments */ /* Read arguments */
if ( argc < 4) { if ( argc < 5) {
usage(); usage();
exit(0); exit(0);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment