Index: /trunk/PS-IPP-Config/lib/PS/IPP/Config.pm
===================================================================
--- /trunk/PS-IPP-Config/lib/PS/IPP/Config.pm	(revision 17828)
+++ /trunk/PS-IPP-Config/lib/PS/IPP/Config.pm	(revision 17829)
@@ -1,5 +1,5 @@
 # Copyright (c) 2006  Paul Price, Joshua Hoblitt
 #
-# $Id: Config.pm,v 1.86 2008-05-14 02:06:37 jhoblitt Exp $
+# $Id: Config.pm,v 1.87 2008-05-28 20:28:46 jhoblitt Exp $
 
 package PS::IPP::Config;
@@ -376,8 +376,11 @@
         if ($touch) {
             unless ($neb->stat( $name )) {
-                unless($neb->create( $name )) {
+                my $uri = $neb->create( $name );
+                unless(defined $uri) {
                     carp "unable to instantiate $name.";
                     exit($PS_EXIT_DATA_ERROR);
                 }
+                my $path = URI->new( $uri )->path;
+                return $path;
             }
         }
