diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-10 21:00:47 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-10-10 21:00:47 +0000 |
commit | cba9ef5523f09ecc3240f9f6efcdd0440c652c91 (patch) | |
tree | 79a2f859df1f6eef15defd02bd2f453735ed327e /runit | |
parent | 1ac42bf66e2c181b886e89f9222cae65676c9e8a (diff) | |
download | busybox-w32-cba9ef5523f09ecc3240f9f6efcdd0440c652c91.tar.gz busybox-w32-cba9ef5523f09ecc3240f9f6efcdd0440c652c91.tar.bz2 busybox-w32-cba9ef5523f09ecc3240f9f6efcdd0440c652c91.zip |
fixes from Vladimir Dronnikov <dronnikov@gmail.ru>
Diffstat (limited to 'runit')
-rw-r--r-- | runit/chpst.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runit/chpst.c b/runit/chpst.c index 5f30b8815..1b6f37849 100644 --- a/runit/chpst.c +++ b/runit/chpst.c | |||
@@ -223,7 +223,7 @@ int chpst_main(int argc, char **argv) | |||
223 | 223 | ||
224 | { | 224 | { |
225 | char *m,*d,*o,*p,*f,*c,*r,*t,*n; | 225 | char *m,*d,*o,*p,*f,*c,*r,*t,*n; |
226 | getopt32(argc, argv, "u:U:e:m:d:o:p:f:c:r:t:/:n:vP012", | 226 | getopt32(argc, argv, "+u:U:e:m:d:o:p:f:c:r:t:/:n:vP012", |
227 | &set_user,&env_user,&env_dir, | 227 | &set_user,&env_user,&env_dir, |
228 | &m,&d,&o,&p,&f,&c,&r,&t,&root,&n); | 228 | &m,&d,&o,&p,&f,&c,&r,&t,&root,&n); |
229 | // if (option_mask32 & 0x1) // -u | 229 | // if (option_mask32 & 0x1) // -u |
@@ -310,7 +310,7 @@ static void envdir(int argc, char **argv) | |||
310 | static void softlimit(int argc, char **argv) | 310 | static void softlimit(int argc, char **argv) |
311 | { | 311 | { |
312 | char *a,*c,*d,*f,*l,*m,*o,*p,*r,*s,*t; | 312 | char *a,*c,*d,*f,*l,*m,*o,*p,*r,*s,*t; |
313 | getopt32(argc, argv, "a:c:d:f:l:m:o:p:r:s:t:", | 313 | getopt32(argc, argv, "+a:c:d:f:l:m:o:p:r:s:t:", |
314 | &a,&c,&d,&f,&l,&m,&o,&p,&r,&s,&t); | 314 | &a,&c,&d,&f,&l,&m,&o,&p,&r,&s,&t); |
315 | if (option_mask32 & 0x001) limita = xatoul(a); // -a | 315 | if (option_mask32 & 0x001) limita = xatoul(a); // -a |
316 | if (option_mask32 & 0x002) limitc = xatoul(c); // -c | 316 | if (option_mask32 & 0x002) limitc = xatoul(c); // -c |