diff options
author | Matt Kraai <kraai@debian.org> | 2000-07-12 00:53:06 +0000 |
---|---|---|
committer | Matt Kraai <kraai@debian.org> | 2000-07-12 00:53:06 +0000 |
commit | e714bce003a1b0e2c49e58fe14af86abc8b31f23 (patch) | |
tree | 83dc60ba6291ab2839a8eeca47076582578841c7 /console-tools | |
parent | 3ecbe9f4dca998d224760f537dc1c3fd7269893b (diff) | |
download | busybox-e714bce003a1b0e2c49e58fe14af86abc8b31f23.tar.gz |
Use global applet_name instead of local versions.
Diffstat (limited to 'console-tools')
-rw-r--r-- | console-tools/deallocvt.c | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/console-tools/deallocvt.c b/console-tools/deallocvt.c index 0cad7717b..53d4d9a7c 100644 --- a/console-tools/deallocvt.c +++ b/console-tools/deallocvt.c @@ -14,8 +14,6 @@ #define VT_DISALLOCATE 0x5608 /* free memory associated to vt */ -char *progname; - int deallocvt_main(int argc, char *argv[]) { int fd, num, i; @@ -29,8 +27,6 @@ int deallocvt_main(int argc, char *argv[]) ); } - progname = argv[0]; - fd = get_console_fd("/dev/console"); if (argc == 1) { @@ -43,14 +39,14 @@ int deallocvt_main(int argc, char *argv[]) for (i = 1; i < argc; i++) { num = atoi(argv[i]); if (num == 0) - fprintf(stderr, "%s: 0: illegal VT number\n", progname); + fprintf(stderr, "%s: 0: illegal VT number\n", applet_name); else if (num == 1) fprintf(stderr, "%s: VT 1 cannot be deallocated\n", - progname); + applet_name); else if (ioctl(fd, VT_DISALLOCATE, num)) { perror("VT_DISALLOCATE"); fprintf(stderr, "%s: could not deallocate console %d\n", - progname, num); + applet_name, num); exit( FALSE); } } |