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
5d4deaf0
...
5d4deaf0304d365c92d787fe51bf2826baf080da
authored
2005-06-27 11:09:10 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
argcv_unescape_char renamed to argcv_unquote_char
1 parent
f9b47847
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
4 deletions
comsat/action.c
libsieve/sieve.l
comsat/action.c
View file @
5d4deaf
/* GNU Mailutils -- a suite of utilities for electronic mail
Copyright (C) 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
Copyright (C) 1999, 2000, 2001, 2002
, 2005
Free Software Foundation, Inc.
GNU Mailutils is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
...
...
@@ -198,7 +198,7 @@ expand_line (const char *str, message_t msg)
p
++
;
if
(
*
p
)
{
c
=
argcv_un
escap
e_char
(
*
p
);
c
=
argcv_un
quot
e_char
(
*
p
);
obstack_1grow
(
&
stk
,
c
);
}
break
;
...
...
libsieve/sieve.l
View file @
5d4deaf
%{
/* GNU Mailutils -- a suite of utilities for electronic mail
Copyright (C) 1999, 2000, 2001, 2002, 2004 Free Software Foundation, Inc.
Copyright (C) 1999, 2000, 2001, 2002, 2004, 2005
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
...
...
@@ -728,7 +729,7 @@ str_unescape (char *text, size_t len)
{
char *str = sieve_alloc (len);
memcpy (str, text, len - 2);
str[len - 2] = argcv_un
escap
e_char (text[len - 1]);
str[len - 2] = argcv_un
quot
e_char (text[len - 1]);
str[len - 1] = 0;
return str;
}
...
...
Please
register
or
sign in
to post a comment