Deprecated: Assigning the return value of new by reference is deprecated in /home/bluestat/public_html/source/index.php on line 477
From 898563b1aa97d02d11a561d40b020d673340a3f6 Mon Sep 17 00:00:00 2001
From: Robert Sesek
Date: Fri, 23 Nov 2007 12:46:12 -0500
Subject: [PATCH] For the two CK_STATUS_R and CK_STATUS_C add a note about
breaking exection and continuing the loop
---
Source/BSDirectoryService.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Source/BSDirectoryService.h b/Source/BSDirectoryService.h
index a991be1..11cfe00 100644
--- a/Source/BSDirectoryService.h
+++ b/Source/BSDirectoryService.h
@@ -32,12 +32,12 @@ tDirStatus _dirStatus;
}
#define CK_STATUS_R(expr, msg, rtrn) \
if ((_dirStatus = expr) != eDSNoErr) { \
- NSLog([NSString stringWithFormat:@"%@ (status = %i)", msg, _dirStatus]); \
+ NSLog([NSString stringWithFormat:@"BREAKING EXECUTION! %@ (status = %i)", msg, _dirStatus]); \
return rtrn; \
}
#define CK_STATUS_C(expr, msg) \
if ((_dirStatus = expr) != eDSNoErr) { \
- NSLog([NSString stringWithFormat:@"%@ (status = %i)", msg, _dirStatus]); \
+ NSLog([NSString stringWithFormat:@"CONTINUING LOOP! %@ (status = %i)", msg, _dirStatus]); \
continue; \
}
--
1.7.11.3