Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
ee74be6a
...
ee74be6a9f8e35b8b0d5a1881f97af6cc391e146
authored
2006-04-05 16:15:41 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Fix indentation.
1 parent
df7102d4
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
mailbox/argcv.c
mailbox/argcv.c
View file @
ee74be6
/* argcv.c - simple functions for parsing input based on whitespace
Copyright (C) 1999, 2000, 2001, 2003, 2004,
2005 Free Software Foundation, Inc.
2005
, 2006
Free Software Foundation, Inc.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
...
...
@@ -249,7 +249,7 @@ argcv_unquote_copy (char *dst, const char *src, size_t n)
}
}
}
else
if
((
unsigned
char
)
src
[
i
]
<
128
&&
isdigit
(
src
[
i
]))
else
if
((
unsigned
char
)
src
[
i
]
<
128
&&
isdigit
(
src
[
i
]))
{
if
(
n
-
i
<
1
)
{
...
...
@@ -258,7 +258,7 @@ argcv_unquote_copy (char *dst, const char *src, size_t n)
}
else
{
int
off
=
xtonum
(
&
c
,
src
+
i
,
8
,
3
);
int
off
=
xtonum
(
&
c
,
src
+
i
,
8
,
3
);
if
(
off
==
0
)
{
*
dst
++
=
'\\'
;
...
...
Please
register
or
sign in
to post a comment