Changes in 22.1
===============
+2006-01-04 Craig Small
+ * fuser signals eg -INT work better
+
2005-12-16 Craig Small
* fuser -s flag works Debian #344901
* fix grep lines in Makefile for i386 arches Debian #344172
/* FIXME longopts */
continue;
}
- while (*option) switch(*option++) {
+ while (*option) {
+ switch(*option) {
#ifdef WITH_IPV6
case '4':
ipv4_only = 1;
default:
if ( isupper(*option) || isdigit(*option) ) {
sig_number = get_signal(option,"fuser");
+ option[1]='\0';
+
break;
}
fprintf(stderr,"%s: Invalid option %c\n",argv[0] , argv[optc][1]);
-
usage(NULL);
+
break;
- } /* switch */
+ } /* switch */
+ option++;
+ }
continue;
}
/* File specifications */