fix for the password check (checked the wrong variable)
authorFelix Fietkau <nbd@openwrt.org>
Mon, 2 Oct 2006 17:43:42 +0000 (17:43 +0000)
committerFelix Fietkau <nbd@openwrt.org>
Mon, 2 Oct 2006 17:43:42 +0000 (17:43 +0000)
SVN-Revision: 4887

openwrt/package/busybox/patches/310-passwd_access.patch

index 4ecb0d61d4d1147eb42eb9813e893981954decc4..e1a4fdad39ee417961924fca81250cf107633189 100644 (file)
@@ -13,11 +13,11 @@ diff -urN busybox.old/networking/httpd.c busybox.dev/networking/httpd.c
                                continue;
                        }
                        pp = strchr(p, ':');
-+                      if(pp && pp[1] == '!' && pp[2] == ':')
-+                              continue;
 +                      if(pp && pp[1] == '$' && pp[2] == 'p' &&
 +                                               pp[3] == '$' && pp[4] &&
 +                                               (pwd = getpwnam(&pp[4])) != NULL) {
++                              if(pwd->pw_passwd && pwd->pw_passwd[0] == '!')
++                                      continue;
 +                              ppnew = malloc(5 + strlen(pwd->pw_passwd));
 +                              ppnew[0] = ':';
 +                              strcpy(ppnew + 1, pwd->pw_passwd);