summaryrefslogtreecommitdiff
path: root/src/openvpn/buffer.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/openvpn/buffer.c')
-rw-r--r--src/openvpn/buffer.c16
1 files changed, 5 insertions, 11 deletions
diff --git a/src/openvpn/buffer.c b/src/openvpn/buffer.c
index 87e27ec..2defd18 100644
--- a/src/openvpn/buffer.c
+++ b/src/openvpn/buffer.c
@@ -16,9 +16,10 @@
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
- * You should have received a copy of the GNU General Public License along
- * with this program; if not, write to the Free Software Foundation, Inc.,
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ * You should have received a copy of the GNU General Public License
+ * along with this program (see the file COPYING included with this
+ * distribution); if not, write to the Free Software Foundation, Inc.,
+ * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifdef HAVE_CONFIG_H
@@ -442,9 +443,7 @@ gc_transfer(struct gc_arena *dest, struct gc_arena *src)
if (e)
{
while (e->next != NULL)
- {
e = e->next;
- }
e->next = dest->list;
dest->list = src->list;
src->list = NULL;
@@ -600,8 +599,7 @@ void
rm_trailing_chars(char *str, const char *what_to_delete)
{
bool modified;
- do
- {
+ do {
const int len = strlen(str);
modified = false;
if (len > 0)
@@ -684,9 +682,7 @@ string_array_len(const char **array)
if (array)
{
while (array[i])
- {
++i;
- }
}
return i;
}
@@ -1324,9 +1320,7 @@ buffer_list_file(const char *fn, int max_line_len)
{
bl = buffer_list_new(0);
while (fgets(line, max_line_len, fp) != NULL)
- {
buffer_list_push(bl, (unsigned char *)line);
- }
free(line);
}
fclose(fp);