]> arthur.barton.de Git - netatalk.git/commitdiff
Remove a compiler warning
authordidg <didg>
Thu, 1 Jul 2004 02:01:00 +0000 (02:01 +0000)
committerdidg <didg>
Thu, 1 Jul 2004 02:01:00 +0000 (02:01 +0000)
libatalk/asp/asp_getsess.c

index 54431d438ab524f622ed857bad72549983a0c56a..6d09b761bf49dffd5db47e917df7af4abe52eb03 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * $Id: asp_getsess.c,v 1.7.8.4 2004-07-01 01:53:21 bfernhomberg Exp $
+ * $Id: asp_getsess.c,v 1.7.8.5 2004-07-01 02:01:00 didg Exp $
  *
  * Copyright (c) 1990,1996 Regents of The University of Michigan.
  * All Rights Reserved.  See COPYRIGHT.
@@ -162,7 +162,8 @@ ASP asp_getsession(ASP asp, server_child *server_children,
       if ((sigaction(SIGALRM, &action, NULL) < 0) ||
          (setitimer(ITIMER_REAL, &timer, NULL) < 0)) {
        free(asp_ac);
-       server_asp = asp_ac = NULL;
+       server_asp = NULL;
+       asp_ac = NULL;
        return NULL;
       }