diff options
author | dimitri staessens <dimitri.staessens@intec.ugent.be> | 2016-04-26 14:42:05 +0200 |
---|---|---|
committer | dimitri staessens <dimitri.staessens@intec.ugent.be> | 2016-04-26 14:42:05 +0200 |
commit | 6be9ae98877f23b05f69e6006036fec0f6c9d338 (patch) | |
tree | 4ff4fe417d021c67d9173b4add47c4f2b3403f30 /src/ipcpd/ipcp.c | |
parent | a5e2a4cb3ce7bb47ce6b0ad74f11f062bde40e1d (diff) | |
download | ouroboros-6be9ae98877f23b05f69e6006036fec0f6c9d338.tar.gz ouroboros-6be9ae98877f23b05f69e6006036fec0f6c9d338.zip |
lib: instance ID's are now set to the process PID
All instance-id's in ouroboros will be set by the system to the pid of
the process associated with this application process instance. This
means that the user has no way to choose the instance id's. Function
calls that assumed manually defined instance id's have been replaced
throughout the system.
Diffstat (limited to 'src/ipcpd/ipcp.c')
-rw-r--r-- | src/ipcpd/ipcp.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/ipcpd/ipcp.c b/src/ipcpd/ipcp.c index c1071e05..23c432f1 100644 --- a/src/ipcpd/ipcp.c +++ b/src/ipcpd/ipcp.c @@ -31,7 +31,7 @@ int ipcp_arg_check(int argc, char * argv[]) { - if (argc != 4) + if (argc != 3) return -1; /* argument 1: pid of irmd */ @@ -41,7 +41,6 @@ int ipcp_arg_check(int argc, char * argv[]) /* name conformity responsibility of NMS */ /* argument 2: ap name */ - /* argument 3: instance id */ return 0; } |