Index: /branches/rel_apv_10_7_3/usr/src/sys/click/app/slb/slb_wrapper.c
===================================================================
--- /branches/rel_apv_10_7_3/usr/src/sys/click/app/slb/slb_wrapper.c	(revision 40167)
+++ /branches/rel_apv_10_7_3/usr/src/sys/click/app/slb/slb_wrapper.c	(working copy)
@@ -470,6 +470,18 @@
 int
 no_slb_virtual_http(char *name)
 {
+        char choice[10];
+        int len;
+
+        printf("Are you sure to perform the deletion '%s'? (yes/no):", name);
+
+        len = read(0, choice, sizeof(choice) - 1);
+        choice[len - 1] = '\0';
+
+    if (strcasecmp(choice, "yes") != 0) {
+          printf("deletion cancelled.\n");
+          return 0;
+}
 	return no_slb_virtual_generic(name, SLB_PROTOCOL_HTTP);
 }
 int
