]> git.saurik.com Git - apple/configd.git/blobdiff - configd.tproj/_confignotify.c
configd-204.tar.gz
[apple/configd.git] / configd.tproj / _confignotify.c
index e4e0dea332ffb3f5d566ae05264a608dd17335c9..26fb1f412e34adda7eb4617f5ab7c66806bdff85 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2000-2003 Apple Computer, Inc. All rights reserved.
+ * Copyright (c) 2000-2004, 2006 Apple Computer, Inc. All rights reserved.
  *
  * @APPLE_LICENSE_HEADER_START@
  * 
@@ -41,7 +41,7 @@ __SCDynamicStoreNotifyValue(SCDynamicStoreRef store, CFStringRef key, Boolean in
        Boolean                         newValue        = FALSE;
        CFDataRef                       value;
 
-       if (!store || (storePrivate->server == MACH_PORT_NULL)) {
+       if ((store == NULL) || (storePrivate->server == MACH_PORT_NULL)) {
                return kSCStatusNoStoreSession; /* you must have an open session to play */
        }
 
@@ -111,7 +111,7 @@ _confignotify(mach_port_t           server,
                goto done;
        }
 
-       if (!mySession) {
+       if (mySession == NULL) {
                *sc_status = kSCStatusNoStoreSession;   /* you must have an open session to play */
                goto done;
        }