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

Diff for /src/usr.bin/ssh/readconf.c between version 1.234 and 1.235

version 1.234, 2015/04/24 01:36:00 version 1.235, 2015/05/04 06:10:48
Line 480 
Line 480 
         char *arg, *oattrib, *attrib, *cmd, *cp = *condition, *host, *criteria;          char *arg, *oattrib, *attrib, *cmd, *cp = *condition, *host, *criteria;
         const char *ruser;          const char *ruser;
         int r, port, this_result, result = 1, attributes = 0, negate;          int r, port, this_result, result = 1, attributes = 0, negate;
         size_t len;  
         char thishost[NI_MAXHOST], shorthost[NI_MAXHOST], portstr[NI_MAXSERV];          char thishost[NI_MAXHOST], shorthost[NI_MAXHOST], portstr[NI_MAXSERV];
   
         /*          /*
Line 533 
Line 532 
                         result = -1;                          result = -1;
                         goto out;                          goto out;
                 }                  }
                 len = strlen(arg);  
                 if (strcasecmp(attrib, "host") == 0) {                  if (strcasecmp(attrib, "host") == 0) {
                         criteria = xstrdup(host);                          criteria = xstrdup(host);
                         r = match_hostname(host, arg, len) == 1;                          r = match_hostname(host, arg) == 1;
                         if (r == (negate ? 1 : 0))                          if (r == (negate ? 1 : 0))
                                 this_result = result = 0;                                  this_result = result = 0;
                 } else if (strcasecmp(attrib, "originalhost") == 0) {                  } else if (strcasecmp(attrib, "originalhost") == 0) {
                         criteria = xstrdup(original_host);                          criteria = xstrdup(original_host);
                         r = match_hostname(original_host, arg, len) == 1;                          r = match_hostname(original_host, arg) == 1;
                         if (r == (negate ? 1 : 0))                          if (r == (negate ? 1 : 0))
                                 this_result = result = 0;                                  this_result = result = 0;
                 } else if (strcasecmp(attrib, "user") == 0) {                  } else if (strcasecmp(attrib, "user") == 0) {
                         criteria = xstrdup(ruser);                          criteria = xstrdup(ruser);
                         r = match_pattern_list(ruser, arg, len, 0) == 1;                          r = match_pattern_list(ruser, arg, 0) == 1;
                         if (r == (negate ? 1 : 0))                          if (r == (negate ? 1 : 0))
                                 this_result = result = 0;                                  this_result = result = 0;
                 } else if (strcasecmp(attrib, "localuser") == 0) {                  } else if (strcasecmp(attrib, "localuser") == 0) {
                         criteria = xstrdup(pw->pw_name);                          criteria = xstrdup(pw->pw_name);
                         r = match_pattern_list(pw->pw_name, arg, len, 0) == 1;                          r = match_pattern_list(pw->pw_name, arg, 0) == 1;
                         if (r == (negate ? 1 : 0))                          if (r == (negate ? 1 : 0))
                                 this_result = result = 0;                                  this_result = result = 0;
                 } else if (strcasecmp(attrib, "exec") == 0) {                  } else if (strcasecmp(attrib, "exec") == 0) {
Line 653 
Line 651 
         for (i = 0; keywords[i].name; i++)          for (i = 0; keywords[i].name; i++)
                 if (strcmp(cp, keywords[i].name) == 0)                  if (strcmp(cp, keywords[i].name) == 0)
                         return keywords[i].opcode;                          return keywords[i].opcode;
         if (ignored_unknown != NULL && match_pattern_list(cp, ignored_unknown,          if (ignored_unknown != NULL &&
             strlen(ignored_unknown), 1) == 1)              match_pattern_list(cp, ignored_unknown, 1) == 1)
                 return oIgnoredUnknownOption;                  return oIgnoredUnknownOption;
         error("%s: line %d: Bad configuration option: %s",          error("%s: line %d: Bad configuration option: %s",
             filename, linenum, cp);              filename, linenum, cp);

Legend:
Removed from v.1.234  
changed lines
  Added in v.1.235