diff options
author | Glenn L McGrath <bug1@ihug.co.nz> | 2003-01-13 22:09:50 +0000 |
---|---|---|
committer | Glenn L McGrath <bug1@ihug.co.nz> | 2003-01-13 22:09:50 +0000 |
commit | b4a1baa312746a1ddc934b1ddb035b64e72e746b (patch) | |
tree | c8d05e6e83aba6139f8c91eb1ce3f62c6d96c3b9 /libbb | |
parent | d66370cd7329d7d1022644c0a8213147adf8e016 (diff) | |
download | busybox-w32-b4a1baa312746a1ddc934b1ddb035b64e72e746b.tar.gz busybox-w32-b4a1baa312746a1ddc934b1ddb035b64e72e746b.tar.bz2 busybox-w32-b4a1baa312746a1ddc934b1ddb035b64e72e746b.zip |
Correct some init issues, update email address, last_patch78 by Vladimir
N. Oleynik
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/device_open.c | 2 | ||||
-rw-r--r-- | libbb/process_escape_sequence.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/libbb/device_open.c b/libbb/device_open.c index 30b33d7f0..42da1e1be 100644 --- a/libbb/device_open.c +++ b/libbb/device_open.c | |||
@@ -25,7 +25,7 @@ | |||
25 | 25 | ||
26 | 26 | ||
27 | /* try to open up the specified device */ | 27 | /* try to open up the specified device */ |
28 | extern int device_open(char *device, int mode) | 28 | extern int device_open(const char *device, int mode) |
29 | { | 29 | { |
30 | int m, f, fd = -1; | 30 | int m, f, fd = -1; |
31 | 31 | ||
diff --git a/libbb/process_escape_sequence.c b/libbb/process_escape_sequence.c index 67b0490ce..9a16f80ab 100644 --- a/libbb/process_escape_sequence.c +++ b/libbb/process_escape_sequence.c | |||
@@ -3,7 +3,7 @@ | |||
3 | * Utility routines. | 3 | * Utility routines. |
4 | * | 4 | * |
5 | * Copyright (C) Manuel Nova III <mnovoa3@bellsouth.net> | 5 | * Copyright (C) Manuel Nova III <mnovoa3@bellsouth.net> |
6 | * and Vladimir Oleynik <vodz@usa.net> | 6 | * and Vladimir Oleynik <dzo@simtreas.ru> |
7 | * | 7 | * |
8 | * This program is free software; you can redistribute it and/or modify | 8 | * This program is free software; you can redistribute it and/or modify |
9 | * it under the terms of the GNU General Public License as published by | 9 | * it under the terms of the GNU General Public License as published by |