[CLEANUP] startup: report only the basename in the usage message

Don't write the full path to the program, just the program name.
diff --git a/src/haproxy.c b/src/haproxy.c
index f783c3d..0204d06 100644
--- a/src/haproxy.c
+++ b/src/haproxy.c
@@ -352,7 +352,6 @@
 {
 	int i;
 	int arg_mode = 0;	/* MODE_DEBUG, ... */
-	char *old_argv = *argv;
 	char *tmp;
 	char *cfg_pidfile = NULL;
 	int err_code = 0;
@@ -474,7 +473,7 @@
 					while (argc > 0) {
 						oldpids[nb_oldpids] = atol(*argv);
 						if (oldpids[nb_oldpids] <= 0)
-							usage(old_argv);
+							usage(progname);
 						argc--; argv++;
 						nb_oldpids++;
 					}
@@ -483,7 +482,7 @@
 			else { /* >=2 args */
 				argv++; argc--;
 				if (argc == 0)
-					usage(old_argv);
+					usage(progname);
 
 				switch (*flag) {
 				case 'n' : cfg_maxconn = atol(*argv); break;
@@ -500,12 +499,12 @@
 					LIST_ADDQ(&cfg_cfgfiles, &wl->list);
 					break;
 				case 'p' : cfg_pidfile = *argv; break;
-				default: usage(old_argv);
+				default: usage(progname);
 				}
 			}
 		}
 		else
-			usage(old_argv);
+			usage(progname);
 		argv++; argc--;
 	}
 
@@ -514,7 +513,7 @@
 			     | MODE_QUIET | MODE_CHECK | MODE_DEBUG));
 
 	if (LIST_ISEMPTY(&cfg_cfgfiles))
-		usage(old_argv);
+		usage(progname);
 
 	have_appsession = 0;
 	global.maxsock = 10; /* reserve 10 fds ; will be incremented by socket eaters */