]> andersk Git - moira.git/commitdiff
Fix a case where we could use the value of "status" before we've
authorzacheiss <zacheiss>
Tue, 13 Aug 2002 15:49:56 +0000 (15:49 +0000)
committerzacheiss <zacheiss>
Tue, 13 Aug 2002 15:49:56 +0000 (15:49 +0000)
initialized it.

server/mr_main.c

index 8b916152079a00dfe13c79666a8c60f0c6fe1a16..08b761284b5b00b2fe1aa115b91210451bbd249c 100644 (file)
@@ -163,7 +163,7 @@ int main(int argc, char **argv)
   listener = mr_listen(port);
   if (listener == -1)
     {
-      com_err(whoami, status, "trying to create listening connection");
+      com_err(whoami, MR_ABORTED, "trying to create listening connection");
       exit(1);
     }
   FD_ZERO(&xreadfds);
This page took 0.041405 seconds and 5 git commands to generate.