diff options
Diffstat (limited to 'debianutils/start_stop_daemon.c')
-rw-r--r-- | debianutils/start_stop_daemon.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/debianutils/start_stop_daemon.c b/debianutils/start_stop_daemon.c index d7c730f45..6b8d53b13 100644 --- a/debianutils/start_stop_daemon.c +++ b/debianutils/start_stop_daemon.c | |||
@@ -153,6 +153,7 @@ Misc options: | |||
153 | /* Override ENABLE_FEATURE_PIDFILE */ | 153 | /* Override ENABLE_FEATURE_PIDFILE */ |
154 | #define WANT_PIDFILE 1 | 154 | #define WANT_PIDFILE 1 |
155 | #include "libbb.h" | 155 | #include "libbb.h" |
156 | #include "common_bufsiz.h" | ||
156 | 157 | ||
157 | struct pid_list { | 158 | struct pid_list { |
158 | struct pid_list *next; | 159 | struct pid_list *next; |
@@ -191,7 +192,7 @@ struct globals { | |||
191 | int user_id; | 192 | int user_id; |
192 | smallint signal_nr; | 193 | smallint signal_nr; |
193 | } FIX_ALIASING; | 194 | } FIX_ALIASING; |
194 | #define G (*(struct globals*)&bb_common_bufsiz1) | 195 | #define G (*(struct globals*)bb_common_bufsiz1) |
195 | #define userspec (G.userspec ) | 196 | #define userspec (G.userspec ) |
196 | #define cmdname (G.cmdname ) | 197 | #define cmdname (G.cmdname ) |
197 | #define execname (G.execname ) | 198 | #define execname (G.execname ) |