diff options
| author | Adam Ierymenko <adam.ierymenko@gmail.com> | 2013-08-12 21:27:07 -0400 |
|---|---|---|
| committer | Adam Ierymenko <adam.ierymenko@gmail.com> | 2013-08-12 21:27:07 -0400 |
| commit | ce1a03bde31f33bb9ba19a6a69c87872cb4335b1 (patch) | |
| tree | 394e4a59e03e354cf07dbd406798ea0e7d83ae17 /netconf-service | |
| parent | d6414c9ff74e3f8076a1e94d3c6074366119900e (diff) | |
| download | infinitytier-ce1a03bde31f33bb9ba19a6a69c87872cb4335b1.tar.gz infinitytier-ce1a03bde31f33bb9ba19a6a69c87872cb4335b1.zip | |
Fix a *nix build issue.
Diffstat (limited to 'netconf-service')
| -rw-r--r-- | netconf-service/netconf.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/netconf-service/netconf.cpp b/netconf-service/netconf.cpp index 07e0b76d..c8da3d03 100644 --- a/netconf-service/netconf.cpp +++ b/netconf-service/netconf.cpp @@ -225,7 +225,7 @@ int main(int argc,char **argv) response["nwid"] = request.get("nwid"); response["type"] = "netconf-response"; response["requestId"] = request.get("requestId"); - response["error"] = "NOT_FOUND"; + response["error"] = "OBJ_NOT_FOUND"; std::string respm = response.toString(); uint32_t respml = (uint32_t)htonl((uint32_t)respm.length()); |
