mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-23 23:32:49 +02:00
[package] iwcap: fix reversed umask
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30748 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
8f9292853c
commit
a6b7f73287
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* iwcap.c - A simply radiotap capture utility outputting pcap sig_dumps
|
||||
* iwcap.c - A simply radiotap capture utility outputting pcap dumps
|
||||
*
|
||||
* Copyright 2012 Jo-Philipp Wich <jow@openwrt.org>
|
||||
*
|
||||
@ -443,7 +443,7 @@ int main(int argc, char **argv)
|
||||
return 8;
|
||||
|
||||
case 0:
|
||||
umask(0700);
|
||||
umask(0077);
|
||||
chdir("/");
|
||||
freopen("/dev/null", "r", stdin);
|
||||
freopen("/dev/null", "w", stdout);
|
||||
|
Loading…
Reference in New Issue
Block a user