View | Details | Raw Unified | Return to bug 25627
Collapse All | Expand All

(-)src/newsid.c (-12 / +12 lines)
 Lines 55-61    Link Here 
55
   * in a range of 2^48.
55
   * in a range of 2^48.
56
   */
56
   */
57
  ia = (sid->id_auth[5]) +
57
  ia = (sid->id_auth[5]) +
58
				(sid->id_auth[4] << 8 ) +
58
    (sid->id_auth[4] << 8 ) +
59
    (sid->id_auth[3] << 16) +
59
    (sid->id_auth[3] << 16) +
60
    (sid->id_auth[2] << 24);
60
    (sid->id_auth[2] << 24);
61
61
 Lines 84-102    Link Here 
84
 
84
 
85
  
85
  
86
  if(argc >= 1) {
86
  if(argc >= 1) {
87
				for(index_options=1;index_options<argc;index_options++) {        
87
    for(index_options=1;index_options<argc;index_options++) {        
88
							 	if (strcmp(argv[index_options],"--help")==0 || strcmp(argv[index_options],"-h")==0) {
88
      if (strcmp(argv[index_options],"--help")==0 || strcmp(argv[index_options],"-h")==0) {
89
										  help_flag=1;
89
        help_flag=1;
90
									} else {
90
      } else {
91
								    fprintf(stdout, "illegal option: %s\n",argv[index_options]);
91
        fprintf(stdout, "illegal option: %s\n",argv[index_options]);
92
								    help_flag=1;
92
        help_flag=1;
93
								}
93
      }
94
				}
94
    }
95
  }
95
  }
96
  
96
97
  if(help_flag==1) {
97
  if(help_flag==1) {
98
				fprintf(stdout,"%s",help_text);
98
    fprintf(stdout,"%s",help_text);
99
				exit(0);
99
    exit(0);
100
  }
100
  }
101
  
101
  
102
 
102
 

Return to bug 25627