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,14 @@
 int
 no_slb_virtual_http(char *name)
 {
+char choice[10];
+
+printf("Are you sure to perform the deletion '%s'? (yes/no):",name);
+scanf("%s", choice);
+if (strcmp(choice, "yes") !=0) {
+printf("deletion cancelled.\n");
+return 0;
+}
 	return no_slb_virtual_generic(name, SLB_PROTOCOL_HTTP);
 }
 int
