X-Git-Url: http://git.onelab.eu/?p=util-vserver.git;a=blobdiff_plain;f=src%2Fvserver-info.c;h=9a7d6e2056f6559002f310bece353339c13bb775;hp=819c4615e18520e58992e76fd83666744bef15ee;hb=2822ba293eb308225c50d346930c47bf98d9927b;hpb=2894fc5a4c8335e4d7221311fed0556f33f8047c diff --git a/src/vserver-info.c b/src/vserver-info.c index 819c461..9a7d6e2 100644 --- a/src/vserver-info.c +++ b/src/vserver-info.c @@ -1,4 +1,4 @@ -// $Id: vserver-info.c 2403 2006-11-24 23:06:08Z dhozac $ --*- c -*-- +// $Id: vserver-info.c,v 1.23 2005/07/04 22:36:46 ensc Exp $ --*- c -*-- // Copyright (C) 2003 Enrico Scholz // @@ -320,13 +320,6 @@ getInitPid_emulated(char *buf, xid_t xid) return 0; } -#else // VC_ENABLE_API_COMPAT -static char * -getInitPid_emulated(char UNUSED *buf, xid_t UNUSED xid) -{ - WRITE_MSG(2, "tools were built without compat API, getInitPid() not available\n"); - return 0; -} #endif // VC_ENABLE_API_COMPAT static char * @@ -499,7 +492,7 @@ execQuery(char const *vserver, VserverTag tag, int argc, char *argv[]) signed long xid; // type is a small hack, but should be ok... struct vc_vx_info info; - if (isNumber(vserver, &xid, true) && xid>=0) + if (isNumber(vserver, &xid) && xid>=0) res = (vc_get_vx_info(xid, &info)==-1) ? 0 : "1"; else res = (vc_getVserverCtx(vserver, vcCFG_AUTO, false, 0)==VC_NOCTX) ? 0 : "1"; @@ -562,7 +555,7 @@ int main(int argc, char *argv[]) default : WRITE_MSG(2, "Try '"); WRITE_STR(2, argv[0]); - WRITE_MSG(2, " --help' for more information.\n"); + WRITE_MSG(2, " --help\" for more information.\n"); exit(1); break; }