diff options
author | Glenn L McGrath <bug1@ihug.co.nz> | 2004-02-04 08:27:57 +0000 |
---|---|---|
committer | Glenn L McGrath <bug1@ihug.co.nz> | 2004-02-04 08:27:57 +0000 |
commit | 5b0d7deb751d1fb96fb14e30248f888c34f4dec2 (patch) | |
tree | d51f370751b75e14ab662e14ec4a370cb4a18f32 /miscutils | |
parent | 16e45d7e29a35c57fc31484e72f1294144e4899c (diff) | |
download | busybox-w32-5b0d7deb751d1fb96fb14e30248f888c34f4dec2.tar.gz busybox-w32-5b0d7deb751d1fb96fb14e30248f888c34f4dec2.tar.bz2 busybox-w32-5b0d7deb751d1fb96fb14e30248f888c34f4dec2.zip |
Bug fix from Tito.
Diffstat (limited to 'miscutils')
-rw-r--r-- | miscutils/devfsd.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/miscutils/devfsd.c b/miscutils/devfsd.c index aa7a826b7..ada0bae33 100644 --- a/miscutils/devfsd.c +++ b/miscutils/devfsd.c | |||
@@ -837,10 +837,11 @@ static void service_name (const struct devfsd_notify_struct *info) | |||
837 | /* Discard lookups on "/dev/log" and "/dev/initctl" */ | 837 | /* Discard lookups on "/dev/log" and "/dev/initctl" */ |
838 | if( info->type == DEVFSD_NOTIFY_LOOKUP && | 838 | if( info->type == DEVFSD_NOTIFY_LOOKUP && |
839 | ((info->devname[0]=='l' && info->devname[1]=='o' && | 839 | ((info->devname[0]=='l' && info->devname[1]=='o' && |
840 | info->devname[2]=='g' && !info->devname[3]) && | 840 | info->devname[2]=='g' && !info->devname[3]) || |
841 | ( info->devname[0]=='i' && info->devname[1]=='n' && | 841 | ( info->devname[0]=='i' && info->devname[1]=='n' && |
842 | info->devname[2]=='i' && info->devname[3]=='c' && | 842 | info->devname[2]=='i' && info->devname[3]=='t' && |
843 | info->devname[4]=='t' && info->devname[5]=='l' && !info->devname[6]))) | 843 | info->devname[4]=='c' && info->devname[5]=='t' && |
844 | info->devname[6]=='l' && !info->devname[7]))) | ||
844 | return; | 845 | return; |
845 | for (entry = first_config; entry != NULL; entry = entry->next) | 846 | for (entry = first_config; entry != NULL; entry = entry->next) |
846 | { | 847 | { |