[BACK]Return to htpasswd.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / htpasswd

Diff for /src/usr.bin/htpasswd/htpasswd.c between version 1.9 and 1.10

version 1.9, 2014/03/20 15:04:35 version 1.10, 2014/03/24 20:33:01
Line 37 
Line 37 
 usage(void)  usage(void)
 {  {
         fprintf(stderr, "usage:\t%s [file] login\n", __progname);          fprintf(stderr, "usage:\t%s [file] login\n", __progname);
         fprintf(stderr, "\t%s -B [file]\n", __progname);          fprintf(stderr, "\t%s -I [file]\n", __progname);
         exit(1);          exit(1);
 }  }
   
Line 65 
Line 65 
         linesize = 0;          linesize = 0;
         batch = 0;          batch = 0;
   
         while ((c = getopt(argc, argv, "B")) != -1) {          while ((c = getopt(argc, argv, "I")) != -1) {
                 switch (c) {                  switch (c) {
                 case 'B':                  case 'I':
                         batch++;                          batch++;
                         break;                          break;
                 default:                  default:

Legend:
Removed from v.1.9  
changed lines
  Added in v.1.10