Accidently commited a wrong version: it's supposed to succeed when the registrar

is already running.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@13498 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2005-07-06 16:10:02 +00:00
parent ab73618ed0
commit 379b4e7850
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ main()
if (get_port_info(port, &portInfo) == B_OK if (get_port_info(port, &portInfo) == B_OK
&& portInfo.team == teamInfo.team) { && portInfo.team == teamInfo.team) {
puts("The Haiku Registrar is already running."); puts("The Haiku Registrar is already running.");
return 1; return 0;
} }
} }
} }