summaryrefslogtreecommitdiff
path: root/php/src/php5
diff options
context:
space:
mode:
Diffstat (limited to 'php/src/php5')
-rw-r--r--php/src/php5/Util.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/php/src/php5/Util.cpp b/php/src/php5/Util.cpp
index 0413faa4eb4..24374f91049 100644
--- a/php/src/php5/Util.cpp
+++ b/php/src/php5/Util.cpp
@@ -8,7 +8,7 @@
// **********************************************************************
#include <Util.h>
-#include <IceUtil/UUID.h>
+#include <Ice/UUID.h>
#include <Slice/PHPUtil.h>
#include <algorithm>
#include <ctype.h>
@@ -924,7 +924,7 @@ ZEND_FUNCTION(Ice_generateUUID)
WRONG_PARAM_COUNT;
}
- string uuid = IceUtil::generateUUID();
+ string uuid = Ice::generateUUID();
RETURN_STRINGL(STRCAST(uuid.c_str()), static_cast<int>(uuid.size()), 1);
}