diff options
author | "Vladimir N. Oleynik" <dzo@simtreas.ru> | 2005-09-29 16:18:57 +0000 |
---|---|---|
committer | "Vladimir N. Oleynik" <dzo@simtreas.ru> | 2005-09-29 16:18:57 +0000 |
commit | 39a841cecf616098c9c8cf63bbfea5ea2922097c (patch) | |
tree | 5b3a1d569d1e952d8c43899050dca4d6c47bf176 /archival | |
parent | 6a60c821a81b01a136037f8389bd42d86b37e395 (diff) | |
download | busybox-w32-39a841cecf616098c9c8cf63bbfea5ea2922097c.tar.gz busybox-w32-39a841cecf616098c9c8cf63bbfea5ea2922097c.tar.bz2 busybox-w32-39a841cecf616098c9c8cf63bbfea5ea2922097c.zip |
change interface to bb_xasprintf() - more perfect for me.
ln.c: error_msg(str)->error_msg(%s, str) - remove standart "feature" for hackers
reduce 100 bytes don't care in sum
Diffstat (limited to 'archival')
-rw-r--r-- | archival/tar.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/archival/tar.c b/archival/tar.c index 7a82b441b..f6750ae33 100644 --- a/archival/tar.c +++ b/archival/tar.c | |||
@@ -695,12 +695,8 @@ int tar_main(int argc, char **argv) | |||
695 | } | 695 | } |
696 | 696 | ||
697 | /* Prepend '-' to the first argument if required */ | 697 | /* Prepend '-' to the first argument if required */ |
698 | if (argv[1][0] != '-') { | 698 | if (argv[1][0] != '-') |
699 | char *tmp; | 699 | argv[1] = bb_xasprintf("-%s", argv[1]); |
700 | |||
701 | bb_xasprintf(&tmp, "-%s", argv[1]); | ||
702 | argv[1] = tmp; | ||
703 | } | ||
704 | 700 | ||
705 | /* Initialise default values */ | 701 | /* Initialise default values */ |
706 | tar_handle = init_handle(); | 702 | tar_handle = init_handle(); |