Files
source/S/src--filemanager--chmod.c.html
github-actions[bot] 08571174ab Deploy to GitHub Pages
2026-02-01 17:32:02 +00:00

686 lines
128 KiB
HTML

<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'>
<html xmlns='http://www.w3.org/1999/xhtml'>
<head>
<title>src/filemanager/chmod.c</title>
<meta name='robots' content='noindex,nofollow' />
<meta name='generator' content='GLOBAL-6.6.11' />
<meta http-equiv='Content-Style-Type' content='text/css' />
<link rel='stylesheet' type='text/css' href='../style.css' />
</head>
<body>
<!-- beginning of fixed guide -->
<div id='guide'><ul>
<li><a href='#L130'><img class='icon' src='../icons/first.png' alt='[^]' /></a></li>
<li><a href='#L491'><img class='icon' src='../icons/last.png' alt='[v]' /></a></li>
<li><a href='#TOP'><img class='icon' src='../icons/top.png' alt='[top]' /></a></li>
<li><a href='#BOTTOM'><img class='icon' src='../icons/bottom.png' alt='[bottom]' /></a></li>
<li><a href='../mains.html'><img class='icon' src='../icons/index.png' alt='[index]' /></a></li>
<li><a href='../help.html'><img class='icon' src='../icons/help.png' alt='[help]' /></a></li>
<li class='standout'><span><a href='../files/src.html'>src</a>/<a href='../files/src--filemanager.html'>filemanager</a>/chmod.c</span></li>
</ul></div>
<!-- end of fixed guide -->
<div align='right'>Manual pages:
<a href=man/mc.html>mc</a> &bullet; <a href=man/mcdiff.html>mcdiff</a> &bullet; <a href=man/mcedit.html>mcedit</a> &bullet; <a href=man/mcview.html>mcview</a>
</div>
<a id='TOP' name='TOP'></a><h2 class='header'><a href='../mains.html'>root</a>/<a href='../files/src.html'>src</a>/<a href='../files/src--filemanager.html'>filemanager</a>/chmod.c</h2>
<em class='comment'>/* <img class='icon' src='../icons/n_left.png' alt='[previous]' /><img class='icon' src='../icons/n_right.png' alt='[next]' /><a href='#L130'><img class='icon' src='../icons/first.png' alt='[first]' /></a><a href='#L491'><img class='icon' src='../icons/last.png' alt='[last]' /></a><img class='icon' src='../icons/n_top.png' alt='[top]' /><a href='#BOTTOM'><img class='icon' src='../icons/bottom.png' alt='[bottom]' /></a><a href='../mains.html'><img class='icon' src='../icons/index.png' alt='[index]' /></a><a href='../help.html'><img class='icon' src='../icons/help.png' alt='[help]' /></a>&nbsp;<input type='text' readonly onfocus='this.select();' value='+1 src/filemanager/chmod.c' /> */</em>
<hr />
<h2 class='header'>DEFINITIONS</h2>
This source file includes following definitions.
<ol>
<li><a href='#L130' title='Defined at 130.'>chmod_init</a></li>
<li><a href='#L172' title='Defined at 172.'>chmod_draw_select</a></li>
<li><a href='#L182' title='Defined at 182.'>chmod_toggle_select</a></li>
<li><a href='#L192' title='Defined at 192.'>chmod_refresh</a></li>
<li><a href='#L218' title='Defined at 218.'>chmod_bg_callback</a></li>
<li><a href='#L235' title='Defined at 235.'>chmod_callback</a></li>
<li><a href='#L293' title='Defined at 293.'>chmod_dlg_create</a></li>
<li><a href='#L382' title='Defined at 382.'>chmod_done</a></li>
<li><a href='#L392' title='Defined at 392.'>try_chmod</a></li>
<li><a href='#L433' title='Defined at 433.'>do_chmod</a></li>
<li><a href='#L450' title='Defined at 450.'>apply_mask</a></li>
<li><a href='#L491' title='Defined at 491.'>chmod_cmd</a></li>
</ol>
<hr />
<pre>
<a id='L1' name='L1'></a> 1 <em class='comment'>/*</em>
<a id='L2' name='L2'></a> 2 <em class='comment'> Chmod command -- for the Midnight Commander</em>
<a id='L3' name='L3'></a> 3 <em class='comment'></em>
<a id='L4' name='L4'></a> 4 <em class='comment'> Copyright (C) 1994-2025</em>
<a id='L5' name='L5'></a> 5 <em class='comment'> Free Software Foundation, Inc.</em>
<a id='L6' name='L6'></a> 6 <em class='comment'></em>
<a id='L7' name='L7'></a> 7 <em class='comment'> This file is part of the Midnight Commander.</em>
<a id='L8' name='L8'></a> 8 <em class='comment'></em>
<a id='L9' name='L9'></a> 9 <em class='comment'> The Midnight Commander is free software: you can redistribute it</em>
<a id='L10' name='L10'></a> 10 <em class='comment'> and/or modify it under the terms of the GNU General Public License as</em>
<a id='L11' name='L11'></a> 11 <em class='comment'> published by the Free Software Foundation, either version 3 of the License,</em>
<a id='L12' name='L12'></a> 12 <em class='comment'> or (at your option) any later version.</em>
<a id='L13' name='L13'></a> 13 <em class='comment'></em>
<a id='L14' name='L14'></a> 14 <em class='comment'> The Midnight Commander is distributed in the hope that it will be useful,</em>
<a id='L15' name='L15'></a> 15 <em class='comment'> but WITHOUT ANY WARRANTY; without even the implied warranty of</em>
<a id='L16' name='L16'></a> 16 <em class='comment'> MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the</em>
<a id='L17' name='L17'></a> 17 <em class='comment'> GNU General Public License for more details.</em>
<a id='L18' name='L18'></a> 18 <em class='comment'></em>
<a id='L19' name='L19'></a> 19 <em class='comment'> You should have received a copy of the GNU General Public License</em>
<a id='L20' name='L20'></a> 20 <em class='comment'> along with this program. If not, see &lt;https://www.gnu.org/licenses/&gt;.</em>
<a id='L21' name='L21'></a> 21 <em class='comment'> */</em>
<a id='L22' name='L22'></a> 22
<a id='L23' name='L23'></a> 23 <em class='comment'>/** \file chmod.c</em>
<a id='L24' name='L24'></a> 24 <em class='comment'> * \brief Source: chmod command</em>
<a id='L25' name='L25'></a> 25 <em class='comment'> */</em>
<a id='L26' name='L26'></a> 26
<a id='L27' name='L27'></a> 27 <em class='sharp'>#include</em> &lt;config.h&gt;
<a id='L28' name='L28'></a> 28
<a id='L29' name='L29'></a> 29 <em class='sharp'>#include</em> &lt;errno.h&gt;
<a id='L30' name='L30'></a> 30 <em class='sharp'>#include</em> &lt;sys/types.h&gt;
<a id='L31' name='L31'></a> 31 <em class='sharp'>#include</em> &lt;sys/stat.h&gt;
<a id='L32' name='L32'></a> 32 <em class='sharp'>#include</em> &lt;unistd.h&gt;
<a id='L33' name='L33'></a> 33
<a id='L34' name='L34'></a> 34 <em class='sharp'>#include</em> "<a href='lib--global.h.html'>lib/global.h</a>"
<a id='L35' name='L35'></a> 35
<a id='L36' name='L36'></a> 36 <em class='sharp'>#include</em> "<a href='lib--tty--tty.h.html'>lib/tty/tty.h</a>"
<a id='L37' name='L37'></a> 37 <em class='sharp'>#include</em> "<a href='lib--skin.h.html'>lib/skin.h</a>"
<a id='L38' name='L38'></a> 38 <em class='sharp'>#include</em> "<a href='lib--vfs--vfs.h.html'>lib/vfs/vfs.h</a>"
<a id='L39' name='L39'></a> 39 <em class='sharp'>#include</em> "<a href='lib--strutil.h.html'>lib/strutil.h</a>"
<a id='L40' name='L40'></a> 40 <em class='sharp'>#include</em> "<a href='../I/util.h.html'>lib/util.h</a>"
<a id='L41' name='L41'></a> 41 <em class='sharp'>#include</em> "<a href='lib--widget.h.html'>lib/widget.h</a>"
<a id='L42' name='L42'></a> 42
<a id='L43' name='L43'></a> 43 <em class='sharp'>#include</em> "<a href='../I/util.h.html'>src/util.h</a>" <em class='comment'>// file_error_message()</em>
<a id='L44' name='L44'></a> 44
<a id='L45' name='L45'></a> 45 <em class='sharp'>#include</em> "<a href='src--filemanager--cmd.h.html'>cmd.h</a>" <em class='comment'>// chmod_cmd()</em>
<a id='L46' name='L46'></a> 46
<a id='L47' name='L47'></a> 47 <em class='comment'>/*** global variables ****************************************************************************/</em>
<a id='L48' name='L48'></a> 48
<a id='L49' name='L49'></a> 49 <em class='comment'>/*** file scope macro definitions ****************************************************************/</em>
<a id='L50' name='L50'></a> 50
<a id='L51' name='L51'></a> 51 <em class='sharp'>#define</em> <a href='../R/PX.html' title='Multiple referred from 6 places.'>PX</a> 3
<a id='L52' name='L52'></a> 52 <em class='sharp'>#define</em> <a href='../R/PY.html' title='Multiple referred from 6 places.'>PY</a> 2
<a id='L53' name='L53'></a> 53
<a id='L54' name='L54'></a> 54 <em class='sharp'>#define</em> <a href='../R/B_MARKED.html' title='Multiple referred from 4 places.'>B_MARKED</a> <a href='../S/lib--widget--dialog.h.html#L29' title='Defined at 29 in lib/widget/dialog.h.'>B_USER</a>
<a id='L55' name='L55'></a> 55 <em class='sharp'>#define</em> <a href='../R/B_SETALL.html' title='Multiple referred from 10 places.'>B_SETALL</a> (<a href='../S/lib--widget--dialog.h.html#L29' title='Defined at 29 in lib/widget/dialog.h.'>B_USER</a> + 1)
<a id='L56' name='L56'></a> 56 <em class='sharp'>#define</em> <a href='../R/B_SETMRK.html' title='Multiple referred from 4 places.'>B_SETMRK</a> (<a href='../S/lib--widget--dialog.h.html#L29' title='Defined at 29 in lib/widget/dialog.h.'>B_USER</a> + 2)
<a id='L57' name='L57'></a> 57 <em class='sharp'>#define</em> <a href='../R/B_CLRMRK.html' title='Multiple referred from 4 places.'>B_CLRMRK</a> (<a href='../S/lib--widget--dialog.h.html#L29' title='Defined at 29 in lib/widget/dialog.h.'>B_USER</a> + 3)
<a id='L58' name='L58'></a> 58
<a id='L59' name='L59'></a> 59 <em class='sharp'>#define</em> <a href='../R/BUTTONS.html' title='Multiple referred from 16 places.'>BUTTONS</a> 6
<a id='L60' name='L60'></a> 60 <em class='sharp'>#define</em> <a href='../R/BUTTONS_PERM.html' title='Multiple referred from 20 places.'>BUTTONS_PERM</a> 12
<a id='L61' name='L61'></a> 61 <em class='sharp'>#define</em> <a href='../R/LABELS.html' title='Multiple referred from 5 places.'>LABELS</a> 4
<a id='L62' name='L62'></a> 62
<a id='L63' name='L63'></a> 63 <em class='comment'>/*** file scope type declarations ****************************************************************/</em>
<a id='L64' name='L64'></a> 64
<a id='L65' name='L65'></a> 65 <em class='comment'>/*** forward declarations (file scope functions) *************************************************/</em>
<a id='L66' name='L66'></a> 66
<a id='L67' name='L67'></a> 67 <em class='comment'>/*** file scope variables ************************************************************************/</em>
<a id='L68' name='L68'></a> 68
<a id='L69' name='L69'></a> 69 <strong class='reserved'>static</strong> <strong class='reserved'>struct</strong>
<a id='L70' name='L70'></a> 70 <em class='brace'>{</em>
<a id='L71' name='L71'></a> 71 <a href='../Y/mode_t.html' title='Multiple used in 99 places.'>mode_t</a> <a href='../Y/mode.html' title='Multiple used in 188 places.'>mode</a>;
<a id='L72' name='L72'></a> 72 <strong class='reserved'>const</strong> <strong class='reserved'>char</strong> *<a href='../Y/text.html' title='Multiple used in 951 places.'>text</a>;
<a id='L73' name='L73'></a> 73 <a href='../Y/gboolean.html' title='Multiple used in 1942 places.'>gboolean</a> <a href='../Y/selected.html' title='Multiple used in 50 places.'>selected</a>;
<a id='L74' name='L74'></a> 74 <a href='../D/WCheck.html' title='Multiple defined in 2 places.'>WCheck</a> *<a href='../Y/check.html' title='Multiple used in 18 places.'>check</a>;
<a id='L75' name='L75'></a> 75 <em class='brace'>}</em> <a href='../Y/check_perm.html' title='Multiple used in 21 places.'>check_perm</a>[<a href='../D/BUTTONS_PERM.html' title='Multiple defined in 2 places.'>BUTTONS_PERM</a>] = <em class='brace'>{</em>
<a id='L76' name='L76'></a> 76 <em class='brace'>{</em> <a href='../Y/S_ISUID.html' title='Multiple used in 6 places.'>S_ISUID</a>, <a href='../D/N_.html' title='Multiple defined in 3 places.'>N_</a> ("set &amp;user ID on execution"), <a href='../Y/FALSE.html' title='Multiple used in 1723 places.'>FALSE</a>, <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a> <em class='brace'>}</em>,
<a id='L77' name='L77'></a> 77 <em class='brace'>{</em> <a href='../Y/S_ISGID.html' title='Multiple used in 7 places.'>S_ISGID</a>, <a href='../D/N_.html' title='Multiple defined in 3 places.'>N_</a> ("set &amp;group ID on execution"), <a href='../Y/FALSE.html' title='Multiple used in 1723 places.'>FALSE</a>, <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a> <em class='brace'>}</em>,
<a id='L78' name='L78'></a> 78 <em class='brace'>{</em> <a href='../Y/S_ISVTX.html' title='Multiple used in 6 places.'>S_ISVTX</a>, <a href='../D/N_.html' title='Multiple defined in 3 places.'>N_</a> ("stick&amp;y bit"), <a href='../Y/FALSE.html' title='Multiple used in 1723 places.'>FALSE</a>, <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a> <em class='brace'>}</em>,
<a id='L79' name='L79'></a> 79 <em class='brace'>{</em> <a href='../Y/S_IRUSR.html' title='Multiple used in 13 places.'>S_IRUSR</a>, <a href='../D/N_.html' title='Multiple defined in 3 places.'>N_</a> ("&amp;read by owner"), <a href='../Y/FALSE.html' title='Multiple used in 1723 places.'>FALSE</a>, <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a> <em class='brace'>}</em>,
<a id='L80' name='L80'></a> 80 <em class='brace'>{</em> <a href='../Y/S_IWUSR.html' title='Multiple used in 15 places.'>S_IWUSR</a>, <a href='../D/N_.html' title='Multiple defined in 3 places.'>N_</a> ("&amp;write by owner"), <a href='../Y/FALSE.html' title='Multiple used in 1723 places.'>FALSE</a>, <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a> <em class='brace'>}</em>,
<a id='L81' name='L81'></a> 81 <em class='brace'>{</em> <a href='../Y/S_IXUSR.html' title='Multiple used in 7 places.'>S_IXUSR</a>, <a href='../D/N_.html' title='Multiple defined in 3 places.'>N_</a> ("e&amp;xecute/search by owner"), <a href='../Y/FALSE.html' title='Multiple used in 1723 places.'>FALSE</a>, <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a> <em class='brace'>}</em>,
<a id='L82' name='L82'></a> 82 <em class='brace'>{</em> <a href='../Y/S_IRGRP.html' title='Multiple used in 9 places.'>S_IRGRP</a>, <a href='../D/N_.html' title='Multiple defined in 3 places.'>N_</a> ("rea&amp;d by group"), <a href='../Y/FALSE.html' title='Multiple used in 1723 places.'>FALSE</a>, <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a> <em class='brace'>}</em>,
<a id='L83' name='L83'></a> 83 <em class='brace'>{</em> <a href='../Y/S_IWGRP.html' title='Multiple used in 5 places.'>S_IWGRP</a>, <a href='../D/N_.html' title='Multiple defined in 3 places.'>N_</a> ("write by grou&amp;p"), <a href='../Y/FALSE.html' title='Multiple used in 1723 places.'>FALSE</a>, <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a> <em class='brace'>}</em>,
<a id='L84' name='L84'></a> 84 <em class='brace'>{</em> <a href='../Y/S_IXGRP.html' title='Multiple used in 7 places.'>S_IXGRP</a>, <a href='../D/N_.html' title='Multiple defined in 3 places.'>N_</a> ("execu&amp;te/search by group"), <a href='../Y/FALSE.html' title='Multiple used in 1723 places.'>FALSE</a>, <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a> <em class='brace'>}</em>,
<a id='L85' name='L85'></a> 85 <em class='brace'>{</em> <a href='../Y/S_IROTH.html' title='Multiple used in 9 places.'>S_IROTH</a>, <a href='../D/N_.html' title='Multiple defined in 3 places.'>N_</a> ("read &amp;by others"), <a href='../Y/FALSE.html' title='Multiple used in 1723 places.'>FALSE</a>, <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a> <em class='brace'>}</em>,
<a id='L86' name='L86'></a> 86 <em class='brace'>{</em> <a href='../Y/S_IWOTH.html' title='Multiple used in 5 places.'>S_IWOTH</a>, <a href='../D/N_.html' title='Multiple defined in 3 places.'>N_</a> ("wr&amp;ite by others"), <a href='../Y/FALSE.html' title='Multiple used in 1723 places.'>FALSE</a>, <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a> <em class='brace'>}</em>,
<a id='L87' name='L87'></a> 87 <em class='brace'>{</em> <a href='../Y/S_IXOTH.html' title='Multiple used in 7 places.'>S_IXOTH</a>, <a href='../D/N_.html' title='Multiple defined in 3 places.'>N_</a> ("execute/searc&amp;h by others"), <a href='../Y/FALSE.html' title='Multiple used in 1723 places.'>FALSE</a>, <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a> <em class='brace'>}</em>,
<a id='L88' name='L88'></a> 88 <em class='brace'>}</em>;
<a id='L89' name='L89'></a> 89
<a id='L90' name='L90'></a> 90 <strong class='reserved'>static</strong> <strong class='reserved'>int</strong> <a href='../Y/check_perm_len.html' title='Multiple used in 4 places.'>check_perm_len</a> = 0;
<a id='L91' name='L91'></a> 91
<a id='L92' name='L92'></a> 92 <strong class='reserved'>static</strong> <strong class='reserved'>const</strong> <strong class='reserved'>char</strong> *<a href='../Y/file_info_labels.html' title='Multiple used in 7 places.'>file_info_labels</a>[<a href='../D/LABELS.html' title='Multiple defined in 2 places.'>LABELS</a>] = <em class='brace'>{</em>
<a id='L93' name='L93'></a> 93 <a href='../D/N_.html' title='Multiple defined in 3 places.'>N_</a> ("Name:"),
<a id='L94' name='L94'></a> 94 <a href='../D/N_.html' title='Multiple defined in 3 places.'>N_</a> ("Permissions (octal):"),
<a id='L95' name='L95'></a> 95 <a href='../D/N_.html' title='Multiple defined in 3 places.'>N_</a> ("Owner name:"),
<a id='L96' name='L96'></a> 96 <a href='../D/N_.html' title='Multiple defined in 3 places.'>N_</a> ("Group name:"),
<a id='L97' name='L97'></a> 97 <em class='brace'>}</em>;
<a id='L98' name='L98'></a> 98
<a id='L99' name='L99'></a> 99 <strong class='reserved'>static</strong> <strong class='reserved'>int</strong> <a href='../Y/file_info_labels_len.html' title='Multiple used in 3 places.'>file_info_labels_len</a> = 0;
<a id='L100' name='L100'></a> 100
<a id='L101' name='L101'></a> 101 <strong class='reserved'>static</strong> <strong class='reserved'>struct</strong>
<a id='L102' name='L102'></a> 102 <em class='brace'>{</em>
<a id='L103' name='L103'></a> 103 <strong class='reserved'>int</strong> <a href='../Y/ret_cmd.html' title='Multiple used in 22 places.'>ret_cmd</a>;
<a id='L104' name='L104'></a> 104 <a href='../S/lib--widget--button.h.html#L27' title='Defined at 27 in lib/widget/button.h.'>button_flags_t</a> <a href='../Y/flags.html' title='Multiple used in 398 places.'>flags</a>;
<a id='L105' name='L105'></a> 105 <strong class='reserved'>int</strong> <a href='../Y/y.html' title='Multiple used in 587 places.'>y</a>; <em class='comment'>// vertical position relatively to dialog bottom boundary</em>
<a id='L106' name='L106'></a> 106 <strong class='reserved'>const</strong> <strong class='reserved'>char</strong> *<a href='../Y/text.html' title='Multiple used in 951 places.'>text</a>;
<a id='L107' name='L107'></a> 107 <em class='brace'>}</em> <a href='../Y/chmod_but.html' title='Multiple used in 5 places.'>chmod_but</a>[<a href='../D/BUTTONS.html' title='Multiple defined in 4 places.'>BUTTONS</a>] = <em class='brace'>{</em>
<a id='L108' name='L108'></a> 108 <em class='brace'>{</em> <a href='../D/B_SETALL.html' title='Multiple defined in 4 places.'>B_SETALL</a>, <a href='../S/lib--widget--button.h.html#L25' title='Defined at 25 in lib/widget/button.h.'>NORMAL_BUTTON</a>, 6, <a href='../D/N_.html' title='Multiple defined in 3 places.'>N_</a> ("Set &amp;all") <em class='brace'>}</em>,
<a id='L109' name='L109'></a> 109 <em class='brace'>{</em> <a href='../D/B_MARKED.html' title='Multiple defined in 2 places.'>B_MARKED</a>, <a href='../S/lib--widget--button.h.html#L25' title='Defined at 25 in lib/widget/button.h.'>NORMAL_BUTTON</a>, 6, <a href='../D/N_.html' title='Multiple defined in 3 places.'>N_</a> ("&amp;Marked all") <em class='brace'>}</em>,
<a id='L110' name='L110'></a> 110 <em class='brace'>{</em> <a href='../D/B_SETMRK.html' title='Multiple defined in 2 places.'>B_SETMRK</a>, <a href='../S/lib--widget--button.h.html#L25' title='Defined at 25 in lib/widget/button.h.'>NORMAL_BUTTON</a>, 5, <a href='../D/N_.html' title='Multiple defined in 3 places.'>N_</a> ("S&amp;et marked") <em class='brace'>}</em>,
<a id='L111' name='L111'></a> 111 <em class='brace'>{</em> <a href='../D/B_CLRMRK.html' title='Multiple defined in 2 places.'>B_CLRMRK</a>, <a href='../S/lib--widget--button.h.html#L25' title='Defined at 25 in lib/widget/button.h.'>NORMAL_BUTTON</a>, 5, <a href='../D/N_.html' title='Multiple defined in 3 places.'>N_</a> ("C&amp;lear marked") <em class='brace'>}</em>,
<a id='L112' name='L112'></a> 112 <em class='brace'>{</em> <a href='../S/lib--widget--dialog.h.html#L27' title='Defined at 27 in lib/widget/dialog.h.'>B_ENTER</a>, <a href='../S/lib--widget--button.h.html#L26' title='Defined at 26 in lib/widget/button.h.'>DEFPUSH_BUTTON</a>, 3, <a href='../D/N_.html' title='Multiple defined in 3 places.'>N_</a> ("&amp;Set") <em class='brace'>}</em>,
<a id='L113' name='L113'></a> 113 <em class='brace'>{</em> <a href='../S/lib--widget--dialog.h.html#L26' title='Defined at 26 in lib/widget/dialog.h.'>B_CANCEL</a>, <a href='../S/lib--widget--button.h.html#L25' title='Defined at 25 in lib/widget/button.h.'>NORMAL_BUTTON</a>, 3, <a href='../D/N_.html' title='Multiple defined in 3 places.'>N_</a> ("&amp;Cancel") <em class='brace'>}</em>,
<a id='L114' name='L114'></a> 114 <em class='brace'>}</em>;
<a id='L115' name='L115'></a> 115
<a id='L116' name='L116'></a> 116 <strong class='reserved'>static</strong> <a href='../Y/gboolean.html' title='Multiple used in 1942 places.'>gboolean</a> <a href='../Y/mode_change.html' title='Multiple used in 4 places.'>mode_change</a>;
<a id='L117' name='L117'></a> 117 <strong class='reserved'>static</strong> <strong class='reserved'>int</strong> <a href='../Y/current_file.html' title='Multiple used in 51 places.'>current_file</a>;
<a id='L118' name='L118'></a> 118 <strong class='reserved'>static</strong> <a href='../Y/gboolean.html' title='Multiple used in 1942 places.'>gboolean</a> <a href='../Y/ignore_all.html' title='Multiple used in 102 places.'>ignore_all</a>;
<a id='L119' name='L119'></a> 119
<a id='L120' name='L120'></a> 120 <strong class='reserved'>static</strong> <a href='../Y/mode_t.html' title='Multiple used in 99 places.'>mode_t</a> <a href='../Y/and_mask.html' title='Multiple used in 17 places.'>and_mask</a>, <a href='../Y/or_mask.html' title='Multiple used in 14 places.'>or_mask</a>, <a href='../Y/ch_mode.html' title='Multiple used in 9 places.'>ch_mode</a>;
<a id='L121' name='L121'></a> 121
<a id='L122' name='L122'></a> 122 <strong class='reserved'>static</strong> <a href='../S/lib--widget--label.h.html#L23' title='Defined at 23 in lib/widget/label.h.'>WLabel</a> *<a href='../Y/statl.html' title='Multiple used in 4 places.'>statl</a>;
<a id='L123' name='L123'></a> 123 <strong class='reserved'>static</strong> <a href='../D/WGroupbox.html' title='Multiple defined in 2 places.'>WGroupbox</a> *<a href='../Y/file_gb.html' title='Multiple used in 5 places.'>file_gb</a>;
<a id='L124' name='L124'></a> 124
<a id='L125' name='L125'></a> 125 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
<a id='L126' name='L126'></a> 126 <em class='comment'>/*** file scope functions ************************************************************************/</em>
<a id='L127' name='L127'></a> 127 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
<a id='L128' name='L128'></a> 128
<a id='L129' name='L129'></a> 129 <strong class='reserved'>static</strong> <strong class='reserved'>void</strong>
<a id='L130' name='L130'></a> 130 <a href='../S/src--filemanager--chmod.c.html#L496' title='Referred from 496 in src/filemanager/chmod.c.'>chmod_init</a> (<strong class='reserved'>void</strong>)
<em class='comment'>/* <img class='icon' src='../icons/n_left.png' alt='[previous]' /><a href='#L172'><img class='icon' src='../icons/right.png' alt='[next]' /></a><img class='icon' src='../icons/n_first.png' alt='[first]' /><a href='#L491'><img class='icon' src='../icons/last.png' alt='[last]' /></a><a href='#TOP'><img class='icon' src='../icons/top.png' alt='[top]' /></a><a href='#BOTTOM'><img class='icon' src='../icons/bottom.png' alt='[bottom]' /></a><a href='../mains.html'><img class='icon' src='../icons/index.png' alt='[index]' /></a><a href='../help.html'><img class='icon' src='../icons/help.png' alt='[help]' /></a>&nbsp;<input type='text' readonly onfocus='this.select();' value='+130 src/filemanager/chmod.c' /> */</em>
<a id='L131' name='L131'></a> 131 <em class='brace'>{</em>
<a id='L132' name='L132'></a> 132 <strong class='reserved'>static</strong> <a href='../Y/gboolean.html' title='Multiple used in 1942 places.'>gboolean</a> <a href='../Y/i18n.html' title='Multiple used in 15 places.'>i18n</a> = <a href='../Y/FALSE.html' title='Multiple used in 1723 places.'>FALSE</a>;
<a id='L133' name='L133'></a> 133 <strong class='reserved'>int</strong> <a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>, <a href='../Y/len.html' title='Multiple used in 1039 places.'>len</a>;
<a id='L134' name='L134'></a> 134
<a id='L135' name='L135'></a> 135 <strong class='reserved'>for</strong> (<a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a> = 0; <a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a> &lt; <a href='../D/BUTTONS_PERM.html' title='Multiple defined in 2 places.'>BUTTONS_PERM</a>; <a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>++)
<a id='L136' name='L136'></a> 136 <a href='../Y/check_perm.html' title='Multiple used in 21 places.'>check_perm</a>[<a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>].<a href='../Y/selected.html' title='Multiple used in 50 places.'>selected</a> = <a href='../Y/FALSE.html' title='Multiple used in 1723 places.'>FALSE</a>;
<a id='L137' name='L137'></a> 137
<a id='L138' name='L138'></a> 138 <strong class='reserved'>if</strong> (<a href='../Y/i18n.html' title='Multiple used in 15 places.'>i18n</a>)
<a id='L139' name='L139'></a> 139 <strong class='reserved'>return</strong>;
<a id='L140' name='L140'></a> 140
<a id='L141' name='L141'></a> 141 <a href='../Y/i18n.html' title='Multiple used in 15 places.'>i18n</a> = <a href='../Y/TRUE.html' title='Multiple used in 1990 places.'>TRUE</a>;
<a id='L142' name='L142'></a> 142
<a id='L143' name='L143'></a> 143 <em class='sharp'>#ifdef</em> <a href='../Y/ENABLE_NLS.html' title='Multiple used in 18 places.'>ENABLE_NLS</a>
<a id='L144' name='L144'></a> 144 <strong class='reserved'>for</strong> (<a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a> = 0; <a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a> &lt; <a href='../D/BUTTONS_PERM.html' title='Multiple defined in 2 places.'>BUTTONS_PERM</a>; <a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>++)
<a id='L145' name='L145'></a> 145 <a href='../Y/check_perm.html' title='Multiple used in 21 places.'>check_perm</a>[<a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>].<a href='../Y/text.html' title='Multiple used in 951 places.'>text</a> = <a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> (<a href='../Y/check_perm.html' title='Multiple used in 21 places.'>check_perm</a>[<a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>].<a href='../Y/text.html' title='Multiple used in 951 places.'>text</a>);
<a id='L146' name='L146'></a> 146
<a id='L147' name='L147'></a> 147 <strong class='reserved'>for</strong> (<a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a> = 0; <a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a> &lt; <a href='../D/LABELS.html' title='Multiple defined in 2 places.'>LABELS</a>; <a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>++)
<a id='L148' name='L148'></a> 148 <a href='../Y/file_info_labels.html' title='Multiple used in 7 places.'>file_info_labels</a>[<a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>] = <a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> (<a href='../Y/file_info_labels.html' title='Multiple used in 7 places.'>file_info_labels</a>[<a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>]);
<a id='L149' name='L149'></a> 149
<a id='L150' name='L150'></a> 150 <strong class='reserved'>for</strong> (<a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a> = 0; <a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a> &lt; <a href='../D/BUTTONS.html' title='Multiple defined in 4 places.'>BUTTONS</a>; <a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>++)
<a id='L151' name='L151'></a> 151 <a href='../Y/chmod_but.html' title='Multiple used in 5 places.'>chmod_but</a>[<a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>].<a href='../Y/text.html' title='Multiple used in 951 places.'>text</a> = <a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> (<a href='../Y/chmod_but.html' title='Multiple used in 5 places.'>chmod_but</a>[<a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>].<a href='../Y/text.html' title='Multiple used in 951 places.'>text</a>);
<a id='L152' name='L152'></a> 152 <em class='sharp'>#endif</em>
<a id='L153' name='L153'></a> 153
<a id='L154' name='L154'></a> 154 <strong class='reserved'>for</strong> (<a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a> = 0; <a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a> &lt; <a href='../D/BUTTONS_PERM.html' title='Multiple defined in 2 places.'>BUTTONS_PERM</a>; <a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>++)
<a id='L155' name='L155'></a> 155 <em class='brace'>{</em>
<a id='L156' name='L156'></a> 156 <a href='../Y/len.html' title='Multiple used in 1039 places.'>len</a> = <a href='../S/lib--strutil--strutil.c.html#L653' title='Defined at 653 in lib/strutil/strutil.c.'>str_term_width1</a> (<a href='../Y/check_perm.html' title='Multiple used in 21 places.'>check_perm</a>[<a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>].<a href='../Y/text.html' title='Multiple used in 951 places.'>text</a>);
<a id='L157' name='L157'></a> 157 <a href='../Y/check_perm_len.html' title='Multiple used in 4 places.'>check_perm_len</a> = <a href='../Y/MAX.html' title='Multiple used in 122 places.'>MAX</a> (<a href='../Y/check_perm_len.html' title='Multiple used in 4 places.'>check_perm_len</a>, <a href='../Y/len.html' title='Multiple used in 1039 places.'>len</a>);
<a id='L158' name='L158'></a> 158 <em class='brace'>}</em>
<a id='L159' name='L159'></a> 159
<a id='L160' name='L160'></a> 160 <a href='../Y/check_perm_len.html' title='Multiple used in 4 places.'>check_perm_len</a> += 1 + 3 + 1; <em class='comment'>// mark, [x] and space</em>
<a id='L161' name='L161'></a> 161
<a id='L162' name='L162'></a> 162 <strong class='reserved'>for</strong> (<a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a> = 0; <a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a> &lt; <a href='../D/LABELS.html' title='Multiple defined in 2 places.'>LABELS</a>; <a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>++)
<a id='L163' name='L163'></a> 163 <em class='brace'>{</em>
<a id='L164' name='L164'></a> 164 <a href='../Y/len.html' title='Multiple used in 1039 places.'>len</a> = <a href='../S/lib--strutil--strutil.c.html#L653' title='Defined at 653 in lib/strutil/strutil.c.'>str_term_width1</a> (<a href='../Y/file_info_labels.html' title='Multiple used in 7 places.'>file_info_labels</a>[<a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>]) + 2; <em class='comment'>// spaces around</em>
<a id='L165' name='L165'></a> 165 <a href='../Y/file_info_labels_len.html' title='Multiple used in 3 places.'>file_info_labels_len</a> = <a href='../Y/MAX.html' title='Multiple used in 122 places.'>MAX</a> (<a href='../Y/file_info_labels_len.html' title='Multiple used in 3 places.'>file_info_labels_len</a>, <a href='../Y/len.html' title='Multiple used in 1039 places.'>len</a>);
<a id='L166' name='L166'></a> 166 <em class='brace'>}</em>
<a id='L167' name='L167'></a> 167 <em class='brace'>}</em>
<a id='L168' name='L168'></a> 168
<a id='L169' name='L169'></a> 169 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
<a id='L170' name='L170'></a> 170
<a id='L171' name='L171'></a> 171 <strong class='reserved'>static</strong> <strong class='reserved'>void</strong>
<a id='L172' name='L172'></a> 172 <a href='../R/chmod_draw_select.html' title='Multiple referred from 2 places.'>chmod_draw_select</a> (<strong class='reserved'>const</strong> <a href='../D/WDialog.html' title='Multiple defined in 2 places.'>WDialog</a> *<a href='../Y/h.html' title='Multiple used in 496 places.'>h</a>, <strong class='reserved'>int</strong> <a href='../Y/Id.html' title='Multiple used in 11 places.'>Id</a>)
<em class='comment'>/* <a href='#L130'><img class='icon' src='../icons/left.png' alt='[previous]' /></a><a href='#L182'><img class='icon' src='../icons/right.png' alt='[next]' /></a><a href='#L130'><img class='icon' src='../icons/first.png' alt='[first]' /></a><a href='#L491'><img class='icon' src='../icons/last.png' alt='[last]' /></a><a href='#TOP'><img class='icon' src='../icons/top.png' alt='[top]' /></a><a href='#BOTTOM'><img class='icon' src='../icons/bottom.png' alt='[bottom]' /></a><a href='../mains.html'><img class='icon' src='../icons/index.png' alt='[index]' /></a><a href='../help.html'><img class='icon' src='../icons/help.png' alt='[help]' /></a>&nbsp;<input type='text' readonly onfocus='this.select();' value='+172 src/filemanager/chmod.c' /> */</em>
<a id='L173' name='L173'></a> 173 <em class='brace'>{</em>
<a id='L174' name='L174'></a> 174 <a href='../S/lib--widget--widget-common.h.html#L18' title='Defined at 18 in lib/widget/widget-common.h.'>widget_gotoyx</a> (<a href='../Y/h.html' title='Multiple used in 496 places.'>h</a>, <a href='../S/src--filemanager--chmod.c.html#L52' title='Defined at 52 in src/filemanager/chmod.c.'>PY</a> + <a href='../Y/Id.html' title='Multiple used in 11 places.'>Id</a> + 1, <a href='../S/src--filemanager--chmod.c.html#L51' title='Defined at 51 in src/filemanager/chmod.c.'>PX</a> + 1);
<a id='L175' name='L175'></a> 175 <a href='../D/tty_print_char.html' title='Multiple defined in 2 places.'>tty_print_char</a> (<a href='../Y/check_perm.html' title='Multiple used in 21 places.'>check_perm</a>[<a href='../Y/Id.html' title='Multiple used in 11 places.'>Id</a>].<a href='../Y/selected.html' title='Multiple used in 50 places.'>selected</a> ? '*' : ' ');
<a id='L176' name='L176'></a> 176 <a href='../S/lib--widget--widget-common.h.html#L18' title='Defined at 18 in lib/widget/widget-common.h.'>widget_gotoyx</a> (<a href='../Y/h.html' title='Multiple used in 496 places.'>h</a>, <a href='../S/src--filemanager--chmod.c.html#L52' title='Defined at 52 in src/filemanager/chmod.c.'>PY</a> + <a href='../Y/Id.html' title='Multiple used in 11 places.'>Id</a> + 1, <a href='../S/src--filemanager--chmod.c.html#L51' title='Defined at 51 in src/filemanager/chmod.c.'>PX</a> + 3);
<a id='L177' name='L177'></a> 177 <em class='brace'>}</em>
<a id='L178' name='L178'></a> 178
<a id='L179' name='L179'></a> 179 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
<a id='L180' name='L180'></a> 180
<a id='L181' name='L181'></a> 181 <strong class='reserved'>static</strong> <strong class='reserved'>void</strong>
<a id='L182' name='L182'></a> 182 <a href='../R/chmod_toggle_select.html' title='Multiple referred from 2 places.'>chmod_toggle_select</a> (<strong class='reserved'>const</strong> <a href='../D/WDialog.html' title='Multiple defined in 2 places.'>WDialog</a> *<a href='../Y/h.html' title='Multiple used in 496 places.'>h</a>, <strong class='reserved'>int</strong> <a href='../Y/Id.html' title='Multiple used in 11 places.'>Id</a>)
<em class='comment'>/* <a href='#L172'><img class='icon' src='../icons/left.png' alt='[previous]' /></a><a href='#L192'><img class='icon' src='../icons/right.png' alt='[next]' /></a><a href='#L130'><img class='icon' src='../icons/first.png' alt='[first]' /></a><a href='#L491'><img class='icon' src='../icons/last.png' alt='[last]' /></a><a href='#TOP'><img class='icon' src='../icons/top.png' alt='[top]' /></a><a href='#BOTTOM'><img class='icon' src='../icons/bottom.png' alt='[bottom]' /></a><a href='../mains.html'><img class='icon' src='../icons/index.png' alt='[index]' /></a><a href='../help.html'><img class='icon' src='../icons/help.png' alt='[help]' /></a>&nbsp;<input type='text' readonly onfocus='this.select();' value='+182 src/filemanager/chmod.c' /> */</em>
<a id='L183' name='L183'></a> 183 <em class='brace'>{</em>
<a id='L184' name='L184'></a> 184 <a href='../Y/check_perm.html' title='Multiple used in 21 places.'>check_perm</a>[<a href='../Y/Id.html' title='Multiple used in 11 places.'>Id</a>].<a href='../Y/selected.html' title='Multiple used in 50 places.'>selected</a> = !<a href='../Y/check_perm.html' title='Multiple used in 21 places.'>check_perm</a>[<a href='../Y/Id.html' title='Multiple used in 11 places.'>Id</a>].<a href='../Y/selected.html' title='Multiple used in 50 places.'>selected</a>;
<a id='L185' name='L185'></a> 185 <a href='../D/tty_setcolor.html' title='Multiple defined in 2 places.'>tty_setcolor</a> (<a href='../S/lib--skin.h.html#L29' title='Defined at 29 in lib/skin.h.'>DIALOG_NORMAL_COLOR</a>);
<a id='L186' name='L186'></a> 186 <a href='../S/src--filemanager--chmod.c.html#L172' title='Defined at 172 in src/filemanager/chmod.c.'>chmod_draw_select</a> (<a href='../Y/h.html' title='Multiple used in 496 places.'>h</a>, <a href='../Y/Id.html' title='Multiple used in 11 places.'>Id</a>);
<a id='L187' name='L187'></a> 187 <em class='brace'>}</em>
<a id='L188' name='L188'></a> 188
<a id='L189' name='L189'></a> 189 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
<a id='L190' name='L190'></a> 190
<a id='L191' name='L191'></a> 191 <strong class='reserved'>static</strong> <strong class='reserved'>void</strong>
<a id='L192' name='L192'></a> 192 <a href='../S/src--filemanager--chmod.c.html#L224' title='Referred from 224 in src/filemanager/chmod.c.'>chmod_refresh</a> (<strong class='reserved'>const</strong> <a href='../D/WDialog.html' title='Multiple defined in 2 places.'>WDialog</a> *<a href='../Y/h.html' title='Multiple used in 496 places.'>h</a>)
<em class='comment'>/* <a href='#L182'><img class='icon' src='../icons/left.png' alt='[previous]' /></a><a href='#L218'><img class='icon' src='../icons/right.png' alt='[next]' /></a><a href='#L130'><img class='icon' src='../icons/first.png' alt='[first]' /></a><a href='#L491'><img class='icon' src='../icons/last.png' alt='[last]' /></a><a href='#TOP'><img class='icon' src='../icons/top.png' alt='[top]' /></a><a href='#BOTTOM'><img class='icon' src='../icons/bottom.png' alt='[bottom]' /></a><a href='../mains.html'><img class='icon' src='../icons/index.png' alt='[index]' /></a><a href='../help.html'><img class='icon' src='../icons/help.png' alt='[help]' /></a>&nbsp;<input type='text' readonly onfocus='this.select();' value='+192 src/filemanager/chmod.c' /> */</em>
<a id='L193' name='L193'></a> 193 <em class='brace'>{</em>
<a id='L194' name='L194'></a> 194 <strong class='reserved'>int</strong> <a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>;
<a id='L195' name='L195'></a> 195 <strong class='reserved'>int</strong> <a href='../Y/y.html' title='Multiple used in 587 places.'>y</a>, <a href='../Y/x.html' title='Multiple used in 677 places.'>x</a>;
<a id='L196' name='L196'></a> 196
<a id='L197' name='L197'></a> 197 <a href='../D/tty_setcolor.html' title='Multiple defined in 2 places.'>tty_setcolor</a> (<a href='../S/lib--skin.h.html#L29' title='Defined at 29 in lib/skin.h.'>DIALOG_NORMAL_COLOR</a>);
<a id='L198' name='L198'></a> 198
<a id='L199' name='L199'></a> 199 <strong class='reserved'>for</strong> (<a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a> = 0; <a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a> &lt; <a href='../D/BUTTONS_PERM.html' title='Multiple defined in 2 places.'>BUTTONS_PERM</a>; <a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>++)
<a id='L200' name='L200'></a> 200 <a href='../S/src--filemanager--chmod.c.html#L172' title='Defined at 172 in src/filemanager/chmod.c.'>chmod_draw_select</a> (<a href='../Y/h.html' title='Multiple used in 496 places.'>h</a>, <a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>);
<a id='L201' name='L201'></a> 201
<a id='L202' name='L202'></a> 202 <a href='../Y/y.html' title='Multiple used in 587 places.'>y</a> = <a href='../S/lib--widget--widget-common.h.html#L15' title='Defined at 15 in lib/widget/widget-common.h.'>WIDGET</a> (<a href='../Y/file_gb.html' title='Multiple used in 5 places.'>file_gb</a>)-&gt;<a href='../Y/rect.html' title='Multiple used in 436 places.'>rect</a>.<a href='../Y/y.html' title='Multiple used in 587 places.'>y</a> + 1;
<a id='L203' name='L203'></a> 203 <a href='../Y/x.html' title='Multiple used in 677 places.'>x</a> = <a href='../S/lib--widget--widget-common.h.html#L15' title='Defined at 15 in lib/widget/widget-common.h.'>WIDGET</a> (<a href='../Y/file_gb.html' title='Multiple used in 5 places.'>file_gb</a>)-&gt;<a href='../Y/rect.html' title='Multiple used in 436 places.'>rect</a>.<a href='../Y/x.html' title='Multiple used in 677 places.'>x</a> + 2;
<a id='L204' name='L204'></a> 204
<a id='L205' name='L205'></a> 205 <a href='../D/tty_gotoyx.html' title='Multiple defined in 2 places.'>tty_gotoyx</a> (<a href='../Y/y.html' title='Multiple used in 587 places.'>y</a>, <a href='../Y/x.html' title='Multiple used in 677 places.'>x</a>);
<a id='L206' name='L206'></a> 206 <a href='../D/tty_print_string.html' title='Multiple defined in 2 places.'>tty_print_string</a> (<a href='../Y/file_info_labels.html' title='Multiple used in 7 places.'>file_info_labels</a>[0]);
<a id='L207' name='L207'></a> 207 <a href='../D/tty_gotoyx.html' title='Multiple defined in 2 places.'>tty_gotoyx</a> (<a href='../Y/y.html' title='Multiple used in 587 places.'>y</a> + 2, <a href='../Y/x.html' title='Multiple used in 677 places.'>x</a>);
<a id='L208' name='L208'></a> 208 <a href='../D/tty_print_string.html' title='Multiple defined in 2 places.'>tty_print_string</a> (<a href='../Y/file_info_labels.html' title='Multiple used in 7 places.'>file_info_labels</a>[1]);
<a id='L209' name='L209'></a> 209 <a href='../D/tty_gotoyx.html' title='Multiple defined in 2 places.'>tty_gotoyx</a> (<a href='../Y/y.html' title='Multiple used in 587 places.'>y</a> + 4, <a href='../Y/x.html' title='Multiple used in 677 places.'>x</a>);
<a id='L210' name='L210'></a> 210 <a href='../D/tty_print_string.html' title='Multiple defined in 2 places.'>tty_print_string</a> (<a href='../Y/file_info_labels.html' title='Multiple used in 7 places.'>file_info_labels</a>[2]);
<a id='L211' name='L211'></a> 211 <a href='../D/tty_gotoyx.html' title='Multiple defined in 2 places.'>tty_gotoyx</a> (<a href='../Y/y.html' title='Multiple used in 587 places.'>y</a> + 6, <a href='../Y/x.html' title='Multiple used in 677 places.'>x</a>);
<a id='L212' name='L212'></a> 212 <a href='../D/tty_print_string.html' title='Multiple defined in 2 places.'>tty_print_string</a> (<a href='../Y/file_info_labels.html' title='Multiple used in 7 places.'>file_info_labels</a>[3]);
<a id='L213' name='L213'></a> 213 <em class='brace'>}</em>
<a id='L214' name='L214'></a> 214
<a id='L215' name='L215'></a> 215 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
<a id='L216' name='L216'></a> 216
<a id='L217' name='L217'></a> 217 <strong class='reserved'>static</strong> <a href='../S/lib--widget--widget-common.h.html#L66' title='Defined at 66 in lib/widget/widget-common.h.'>cb_ret_t</a>
<a id='L218' name='L218'></a> 218 <a href='../S/src--filemanager--chmod.c.html#L328' title='Referred from 328 in src/filemanager/chmod.c.'>chmod_bg_callback</a> (<a href='../D/Widget.html' title='Multiple defined in 2 places.'>Widget</a> *<a href='../Y/w.html' title='Multiple used in 1387 places.'>w</a>, <a href='../D/Widget.html' title='Multiple defined in 2 places.'>Widget</a> *<a href='../Y/sender.html' title='Multiple used in 173 places.'>sender</a>, <a href='../S/lib--widget--widget-common.h.html#L53' title='Defined at 53 in lib/widget/widget-common.h.'>widget_msg_t</a> <a href='../Y/msg.html' title='Multiple used in 342 places.'>msg</a>, <strong class='reserved'>int</strong> <a href='../Y/parm.html' title='Multiple used in 220 places.'>parm</a>, <strong class='reserved'>void</strong> *<a href='../Y/data.html' title='Multiple used in 916 places.'>data</a>)
<em class='comment'>/* <a href='#L192'><img class='icon' src='../icons/left.png' alt='[previous]' /></a><a href='#L235'><img class='icon' src='../icons/right.png' alt='[next]' /></a><a href='#L130'><img class='icon' src='../icons/first.png' alt='[first]' /></a><a href='#L491'><img class='icon' src='../icons/last.png' alt='[last]' /></a><a href='#TOP'><img class='icon' src='../icons/top.png' alt='[top]' /></a><a href='#BOTTOM'><img class='icon' src='../icons/bottom.png' alt='[bottom]' /></a><a href='../mains.html'><img class='icon' src='../icons/index.png' alt='[index]' /></a><a href='../help.html'><img class='icon' src='../icons/help.png' alt='[help]' /></a>&nbsp;<input type='text' readonly onfocus='this.select();' value='+218 src/filemanager/chmod.c' /> */</em>
<a id='L219' name='L219'></a> 219 <em class='brace'>{</em>
<a id='L220' name='L220'></a> 220 <strong class='reserved'>switch</strong> (<a href='../Y/msg.html' title='Multiple used in 342 places.'>msg</a>)
<a id='L221' name='L221'></a> 221 <em class='brace'>{</em>
<a id='L222' name='L222'></a> 222 <strong class='reserved'>case</strong> <a href='../S/lib--widget--widget-common.h.html#L38' title='Defined at 38 in lib/widget/widget-common.h.'>MSG_DRAW</a>:
<a id='L223' name='L223'></a> 223 <a href='../S/lib--widget--frame.c.html#L121' title='Defined at 121 in lib/widget/frame.c.'>frame_callback</a> (<a href='../Y/w.html' title='Multiple used in 1387 places.'>w</a>, <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>, <a href='../S/lib--widget--widget-common.h.html#L38' title='Defined at 38 in lib/widget/widget-common.h.'>MSG_DRAW</a>, 0, <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>);
<a id='L224' name='L224'></a> 224 <a href='../S/src--filemanager--chmod.c.html#L192' title='Defined at 192 in src/filemanager/chmod.c.'>chmod_refresh</a> (<a href='../S/lib--widget--dialog.h.html#L21' title='Defined at 21 in lib/widget/dialog.h.'>CONST_DIALOG</a> (<a href='../Y/w.html' title='Multiple used in 1387 places.'>w</a>-&gt;<a href='../Y/owner.html' title='Multiple used in 152 places.'>owner</a>));
<a id='L225' name='L225'></a> 225 <strong class='reserved'>return</strong> <a href='../S/lib--widget--widget-common.h.html#L65' title='Defined at 65 in lib/widget/widget-common.h.'>MSG_HANDLED</a>;
<a id='L226' name='L226'></a> 226
<a id='L227' name='L227'></a> 227 <strong class='reserved'>default</strong>:
<a id='L228' name='L228'></a> 228 <strong class='reserved'>return</strong> <a href='../S/lib--widget--frame.c.html#L121' title='Defined at 121 in lib/widget/frame.c.'>frame_callback</a> (<a href='../Y/w.html' title='Multiple used in 1387 places.'>w</a>, <a href='../Y/sender.html' title='Multiple used in 173 places.'>sender</a>, <a href='../Y/msg.html' title='Multiple used in 342 places.'>msg</a>, <a href='../Y/parm.html' title='Multiple used in 220 places.'>parm</a>, <a href='../Y/data.html' title='Multiple used in 916 places.'>data</a>);
<a id='L229' name='L229'></a> 229 <em class='brace'>}</em>
<a id='L230' name='L230'></a> 230 <em class='brace'>}</em>
<a id='L231' name='L231'></a> 231
<a id='L232' name='L232'></a> 232 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
<a id='L233' name='L233'></a> 233
<a id='L234' name='L234'></a> 234 <strong class='reserved'>static</strong> <a href='../S/lib--widget--widget-common.h.html#L66' title='Defined at 66 in lib/widget/widget-common.h.'>cb_ret_t</a>
<a id='L235' name='L235'></a> 235 <a href='../S/src--filemanager--chmod.c.html#L323' title='Referred from 323 in src/filemanager/chmod.c.'>chmod_callback</a> (<a href='../D/Widget.html' title='Multiple defined in 2 places.'>Widget</a> *<a href='../Y/w.html' title='Multiple used in 1387 places.'>w</a>, <a href='../D/Widget.html' title='Multiple defined in 2 places.'>Widget</a> *<a href='../Y/sender.html' title='Multiple used in 173 places.'>sender</a>, <a href='../S/lib--widget--widget-common.h.html#L53' title='Defined at 53 in lib/widget/widget-common.h.'>widget_msg_t</a> <a href='../Y/msg.html' title='Multiple used in 342 places.'>msg</a>, <strong class='reserved'>int</strong> <a href='../Y/parm.html' title='Multiple used in 220 places.'>parm</a>, <strong class='reserved'>void</strong> *<a href='../Y/data.html' title='Multiple used in 916 places.'>data</a>)
<em class='comment'>/* <a href='#L218'><img class='icon' src='../icons/left.png' alt='[previous]' /></a><a href='#L293'><img class='icon' src='../icons/right.png' alt='[next]' /></a><a href='#L130'><img class='icon' src='../icons/first.png' alt='[first]' /></a><a href='#L491'><img class='icon' src='../icons/last.png' alt='[last]' /></a><a href='#TOP'><img class='icon' src='../icons/top.png' alt='[top]' /></a><a href='#BOTTOM'><img class='icon' src='../icons/bottom.png' alt='[bottom]' /></a><a href='../mains.html'><img class='icon' src='../icons/index.png' alt='[index]' /></a><a href='../help.html'><img class='icon' src='../icons/help.png' alt='[help]' /></a>&nbsp;<input type='text' readonly onfocus='this.select();' value='+235 src/filemanager/chmod.c' /> */</em>
<a id='L236' name='L236'></a> 236 <em class='brace'>{</em>
<a id='L237' name='L237'></a> 237 <a href='../D/WGroup.html' title='Multiple defined in 2 places.'>WGroup</a> *<a href='../Y/g.html' title='Multiple used in 537 places.'>g</a> = <a href='../S/lib--widget--group.h.html#L16' title='Defined at 16 in lib/widget/group.h.'>GROUP</a> (<a href='../Y/w.html' title='Multiple used in 1387 places.'>w</a>);
<a id='L238' name='L238'></a> 238 <a href='../D/WDialog.html' title='Multiple defined in 2 places.'>WDialog</a> *<a href='../Y/h.html' title='Multiple used in 496 places.'>h</a> = <a href='../S/lib--widget--dialog.h.html#L20' title='Defined at 20 in lib/widget/dialog.h.'>DIALOG</a> (<a href='../Y/w.html' title='Multiple used in 1387 places.'>w</a>);
<a id='L239' name='L239'></a> 239
<a id='L240' name='L240'></a> 240 <strong class='reserved'>switch</strong> (<a href='../Y/msg.html' title='Multiple used in 342 places.'>msg</a>)
<a id='L241' name='L241'></a> 241 <em class='brace'>{</em>
<a id='L242' name='L242'></a> 242 <strong class='reserved'>case</strong> <a href='../S/lib--widget--widget-common.h.html#L45' title='Defined at 45 in lib/widget/widget-common.h.'>MSG_NOTIFY</a>:
<a id='L243' name='L243'></a> 243 <em class='brace'>{</em>
<a id='L244' name='L244'></a> 244 <em class='comment'>// handle checkboxes</em>
<a id='L245' name='L245'></a> 245 <strong class='reserved'>int</strong> <a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>;
<a id='L246' name='L246'></a> 246
<a id='L247' name='L247'></a> 247 <em class='comment'>// whether notification was sent by checkbox?</em>
<a id='L248' name='L248'></a> 248 <strong class='reserved'>for</strong> (<a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a> = 0; <a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a> &lt; <a href='../D/BUTTONS_PERM.html' title='Multiple defined in 2 places.'>BUTTONS_PERM</a>; <a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>++)
<a id='L249' name='L249'></a> 249 <strong class='reserved'>if</strong> (<a href='../Y/sender.html' title='Multiple used in 173 places.'>sender</a> == <a href='../S/lib--widget--widget-common.h.html#L15' title='Defined at 15 in lib/widget/widget-common.h.'>WIDGET</a> (<a href='../Y/check_perm.html' title='Multiple used in 21 places.'>check_perm</a>[<a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>].<a href='../Y/check.html' title='Multiple used in 18 places.'>check</a>))
<a id='L250' name='L250'></a> 250 <strong class='reserved'>break</strong>;
<a id='L251' name='L251'></a> 251
<a id='L252' name='L252'></a> 252 <strong class='reserved'>if</strong> (<a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a> &lt; <a href='../D/BUTTONS_PERM.html' title='Multiple defined in 2 places.'>BUTTONS_PERM</a>)
<a id='L253' name='L253'></a> 253 <em class='brace'>{</em>
<a id='L254' name='L254'></a> 254 <a href='../Y/ch_mode.html' title='Multiple used in 9 places.'>ch_mode</a> ^= <a href='../Y/check_perm.html' title='Multiple used in 21 places.'>check_perm</a>[<a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>].<a href='../Y/mode.html' title='Multiple used in 188 places.'>mode</a>;
<a id='L255' name='L255'></a> 255 <a href='../S/lib--widget--label.c.html#L188' title='Defined at 188 in lib/widget/label.c.'>label_set_textv</a> (<a href='../Y/statl.html' title='Multiple used in 4 places.'>statl</a>, "%o", (<strong class='reserved'>unsigned</strong> <strong class='reserved'>int</strong>) <a href='../Y/ch_mode.html' title='Multiple used in 9 places.'>ch_mode</a>);
<a id='L256' name='L256'></a> 256 <a href='../S/src--filemanager--chmod.c.html#L182' title='Defined at 182 in src/filemanager/chmod.c.'>chmod_toggle_select</a> (<a href='../Y/h.html' title='Multiple used in 496 places.'>h</a>, <a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>);
<a id='L257' name='L257'></a> 257 <a href='../Y/mode_change.html' title='Multiple used in 4 places.'>mode_change</a> = <a href='../Y/TRUE.html' title='Multiple used in 1990 places.'>TRUE</a>;
<a id='L258' name='L258'></a> 258 <strong class='reserved'>return</strong> <a href='../S/lib--widget--widget-common.h.html#L65' title='Defined at 65 in lib/widget/widget-common.h.'>MSG_HANDLED</a>;
<a id='L259' name='L259'></a> 259 <em class='brace'>}</em>
<a id='L260' name='L260'></a> 260 <em class='brace'>}</em>
<a id='L261' name='L261'></a> 261
<a id='L262' name='L262'></a> 262 <strong class='reserved'>return</strong> <a href='../S/lib--widget--widget-common.h.html#L64' title='Defined at 64 in lib/widget/widget-common.h.'>MSG_NOT_HANDLED</a>;
<a id='L263' name='L263'></a> 263
<a id='L264' name='L264'></a> 264 <strong class='reserved'>case</strong> <a href='../S/lib--widget--widget-common.h.html#L39' title='Defined at 39 in lib/widget/widget-common.h.'>MSG_KEY</a>:
<a id='L265' name='L265'></a> 265 <strong class='reserved'>if</strong> (<a href='../Y/parm.html' title='Multiple used in 220 places.'>parm</a> == 'T' || <a href='../Y/parm.html' title='Multiple used in 220 places.'>parm</a> == 't' || <a href='../Y/parm.html' title='Multiple used in 220 places.'>parm</a> == <a href='../S/lib--tty--tty-slang.h.html#L31' title='Defined at 31 in lib/tty/tty-slang.h.'>KEY_IC</a>)
<a id='L266' name='L266'></a> 266 <em class='brace'>{</em>
<a id='L267' name='L267'></a> 267 <strong class='reserved'>int</strong> <a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>;
<a id='L268' name='L268'></a> 268 <strong class='reserved'>unsigned</strong> <strong class='reserved'>long</strong> <a href='../Y/id.html' title='Multiple used in 143 places.'>id</a>;
<a id='L269' name='L269'></a> 269
<a id='L270' name='L270'></a> 270 <a href='../Y/id.html' title='Multiple used in 143 places.'>id</a> = <a href='../S/lib--widget--group.h.html#L119' title='Defined at 119 in lib/widget/group.h.'>group_get_current_widget_id</a> (<a href='../Y/g.html' title='Multiple used in 537 places.'>g</a>);
<a id='L271' name='L271'></a> 271 <strong class='reserved'>for</strong> (<a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a> = 0; <a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a> &lt; <a href='../D/BUTTONS_PERM.html' title='Multiple defined in 2 places.'>BUTTONS_PERM</a>; <a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>++)
<a id='L272' name='L272'></a> 272 <strong class='reserved'>if</strong> (<a href='../Y/id.html' title='Multiple used in 143 places.'>id</a> == <a href='../S/lib--widget--widget-common.h.html#L15' title='Defined at 15 in lib/widget/widget-common.h.'>WIDGET</a> (<a href='../Y/check_perm.html' title='Multiple used in 21 places.'>check_perm</a>[<a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>].<a href='../Y/check.html' title='Multiple used in 18 places.'>check</a>)-&gt;<a href='../Y/id.html' title='Multiple used in 143 places.'>id</a>)
<a id='L273' name='L273'></a> 273 <strong class='reserved'>break</strong>;
<a id='L274' name='L274'></a> 274
<a id='L275' name='L275'></a> 275 <strong class='reserved'>if</strong> (<a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a> &lt; <a href='../D/BUTTONS_PERM.html' title='Multiple defined in 2 places.'>BUTTONS_PERM</a>)
<a id='L276' name='L276'></a> 276 <em class='brace'>{</em>
<a id='L277' name='L277'></a> 277 <a href='../S/src--filemanager--chmod.c.html#L182' title='Defined at 182 in src/filemanager/chmod.c.'>chmod_toggle_select</a> (<a href='../Y/h.html' title='Multiple used in 496 places.'>h</a>, <a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>);
<a id='L278' name='L278'></a> 278 <strong class='reserved'>if</strong> (<a href='../Y/parm.html' title='Multiple used in 220 places.'>parm</a> == <a href='../S/lib--tty--tty-slang.h.html#L31' title='Defined at 31 in lib/tty/tty-slang.h.'>KEY_IC</a>)
<a id='L279' name='L279'></a> 279 <a href='../S/lib--widget--group.c.html#L920' title='Defined at 920 in lib/widget/group.c.'>group_select_next_widget</a> (<a href='../Y/g.html' title='Multiple used in 537 places.'>g</a>);
<a id='L280' name='L280'></a> 280 <strong class='reserved'>return</strong> <a href='../S/lib--widget--widget-common.h.html#L65' title='Defined at 65 in lib/widget/widget-common.h.'>MSG_HANDLED</a>;
<a id='L281' name='L281'></a> 281 <em class='brace'>}</em>
<a id='L282' name='L282'></a> 282 <em class='brace'>}</em>
<a id='L283' name='L283'></a> 283 <strong class='reserved'>return</strong> <a href='../S/lib--widget--widget-common.h.html#L64' title='Defined at 64 in lib/widget/widget-common.h.'>MSG_NOT_HANDLED</a>;
<a id='L284' name='L284'></a> 284
<a id='L285' name='L285'></a> 285 <strong class='reserved'>default</strong>:
<a id='L286' name='L286'></a> 286 <strong class='reserved'>return</strong> <a href='../S/lib--widget--dialog.c.html#L321' title='Defined at 321 in lib/widget/dialog.c.'>dlg_default_callback</a> (<a href='../Y/w.html' title='Multiple used in 1387 places.'>w</a>, <a href='../Y/sender.html' title='Multiple used in 173 places.'>sender</a>, <a href='../Y/msg.html' title='Multiple used in 342 places.'>msg</a>, <a href='../Y/parm.html' title='Multiple used in 220 places.'>parm</a>, <a href='../Y/data.html' title='Multiple used in 916 places.'>data</a>);
<a id='L287' name='L287'></a> 287 <em class='brace'>}</em>
<a id='L288' name='L288'></a> 288 <em class='brace'>}</em>
<a id='L289' name='L289'></a> 289
<a id='L290' name='L290'></a> 290 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
<a id='L291' name='L291'></a> 291
<a id='L292' name='L292'></a> 292 <strong class='reserved'>static</strong> <a href='../D/WDialog.html' title='Multiple defined in 2 places.'>WDialog</a> *
<a id='L293' name='L293'></a> 293 <a href='../S/src--filemanager--chmod.c.html#L528' title='Referred from 528 in src/filemanager/chmod.c.'>chmod_dlg_create</a> (<a href='../S/src--filemanager--panel.h.html#L142' title='Defined at 142 in src/filemanager/panel.h.'>WPanel</a> *<a href='../Y/panel.html' title='Multiple used in 1289 places.'>panel</a>, <strong class='reserved'>const</strong> <strong class='reserved'>char</strong> *<a href='../Y/fname.html' title='Multiple used in 307 places.'>fname</a>, <strong class='reserved'>const</strong> <strong class='reserved'>struct</strong> <a href='../Y/stat.html' title='Multiple used in 287 places.'>stat</a> *<a href='../Y/sf_stat.html' title='Multiple used in 30 places.'>sf_stat</a>)
<em class='comment'>/* <a href='#L235'><img class='icon' src='../icons/left.png' alt='[previous]' /></a><a href='#L382'><img class='icon' src='../icons/right.png' alt='[next]' /></a><a href='#L130'><img class='icon' src='../icons/first.png' alt='[first]' /></a><a href='#L491'><img class='icon' src='../icons/last.png' alt='[last]' /></a><a href='#TOP'><img class='icon' src='../icons/top.png' alt='[top]' /></a><a href='#BOTTOM'><img class='icon' src='../icons/bottom.png' alt='[bottom]' /></a><a href='../mains.html'><img class='icon' src='../icons/index.png' alt='[index]' /></a><a href='../help.html'><img class='icon' src='../icons/help.png' alt='[help]' /></a>&nbsp;<input type='text' readonly onfocus='this.select();' value='+293 src/filemanager/chmod.c' /> */</em>
<a id='L294' name='L294'></a> 294 <em class='brace'>{</em>
<a id='L295' name='L295'></a> 295 <a href='../Y/gboolean.html' title='Multiple used in 1942 places.'>gboolean</a> <a href='../Y/single_set.html' title='Multiple used in 17 places.'>single_set</a>;
<a id='L296' name='L296'></a> 296 <a href='../D/WDialog.html' title='Multiple defined in 2 places.'>WDialog</a> *<a href='../Y/ch_dlg.html' title='Multiple used in 41 places.'>ch_dlg</a>;
<a id='L297' name='L297'></a> 297 <a href='../D/WGroup.html' title='Multiple defined in 2 places.'>WGroup</a> *<a href='../Y/g.html' title='Multiple used in 537 places.'>g</a>;
<a id='L298' name='L298'></a> 298 <strong class='reserved'>int</strong> <a href='../Y/lines.html' title='Multiple used in 377 places.'>lines</a>, <a href='../Y/cols.html' title='Multiple used in 449 places.'>cols</a>;
<a id='L299' name='L299'></a> 299 <strong class='reserved'>int</strong> <a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>, <a href='../Y/y.html' title='Multiple used in 587 places.'>y</a>;
<a id='L300' name='L300'></a> 300 <strong class='reserved'>int</strong> <a href='../Y/perm_gb_len.html' title='Multiple used in 7 places.'>perm_gb_len</a>;
<a id='L301' name='L301'></a> 301 <strong class='reserved'>int</strong> <a href='../Y/file_gb_len.html' title='Multiple used in 9 places.'>file_gb_len</a>;
<a id='L302' name='L302'></a> 302 <strong class='reserved'>const</strong> <strong class='reserved'>char</strong> *<a href='../Y/c_fname.html' title='Multiple used in 3 places.'>c_fname</a>, *<a href='../Y/c_fown.html' title='Multiple used in 3 places.'>c_fown</a>, *<a href='../Y/c_fgrp.html' title='Multiple used in 3 places.'>c_fgrp</a>;
<a id='L303' name='L303'></a> 303 <strong class='reserved'>char</strong> <a href='../Y/buffer.html' title='Multiple used in 996 places.'>buffer</a>[<a href='../S/lib--global.h.html#L91' title='Defined at 91 in lib/global.h.'>BUF_TINY</a>];
<a id='L304' name='L304'></a> 304
<a id='L305' name='L305'></a> 305 <a href='../Y/mode_change.html' title='Multiple used in 4 places.'>mode_change</a> = <a href='../Y/FALSE.html' title='Multiple used in 1723 places.'>FALSE</a>;
<a id='L306' name='L306'></a> 306
<a id='L307' name='L307'></a> 307 <a href='../Y/single_set.html' title='Multiple used in 17 places.'>single_set</a> = (<a href='../Y/panel.html' title='Multiple used in 1289 places.'>panel</a>-&gt;<a href='../Y/marked.html' title='Multiple used in 99 places.'>marked</a> &lt; 2);
<a id='L308' name='L308'></a> 308 <a href='../Y/perm_gb_len.html' title='Multiple used in 7 places.'>perm_gb_len</a> = <a href='../Y/check_perm_len.html' title='Multiple used in 4 places.'>check_perm_len</a> + 2;
<a id='L309' name='L309'></a> 309 <a href='../Y/file_gb_len.html' title='Multiple used in 9 places.'>file_gb_len</a> = <a href='../Y/file_info_labels_len.html' title='Multiple used in 3 places.'>file_info_labels_len</a> + 2;
<a id='L310' name='L310'></a> 310 <a href='../Y/cols.html' title='Multiple used in 449 places.'>cols</a> = <a href='../S/lib--strutil--strutil.c.html#L653' title='Defined at 653 in lib/strutil/strutil.c.'>str_term_width1</a> (<a href='../Y/fname.html' title='Multiple used in 307 places.'>fname</a>) + 2 + 1;
<a id='L311' name='L311'></a> 311 <a href='../Y/file_gb_len.html' title='Multiple used in 9 places.'>file_gb_len</a> = <a href='../Y/MAX.html' title='Multiple used in 122 places.'>MAX</a> (<a href='../Y/file_gb_len.html' title='Multiple used in 9 places.'>file_gb_len</a>, <a href='../Y/cols.html' title='Multiple used in 449 places.'>cols</a>);
<a id='L312' name='L312'></a> 312
<a id='L313' name='L313'></a> 313 <a href='../Y/lines.html' title='Multiple used in 377 places.'>lines</a> = <a href='../Y/single_set.html' title='Multiple used in 17 places.'>single_set</a> ? 20 : 23;
<a id='L314' name='L314'></a> 314 <a href='../Y/cols.html' title='Multiple used in 449 places.'>cols</a> = <a href='../Y/perm_gb_len.html' title='Multiple used in 7 places.'>perm_gb_len</a> + <a href='../Y/file_gb_len.html' title='Multiple used in 9 places.'>file_gb_len</a> + 1 + 6;
<a id='L315' name='L315'></a> 315
<a id='L316' name='L316'></a> 316 <strong class='reserved'>if</strong> (<a href='../Y/cols.html' title='Multiple used in 449 places.'>cols</a> &gt; <a href='../S/lib--tty--tty-slang.h.html#L11' title='Defined at 11 in lib/tty/tty-slang.h.'>COLS</a>)
<a id='L317' name='L317'></a> 317 <em class='brace'>{</em>
<a id='L318' name='L318'></a> 318 <em class='comment'>// shrink the right groupbox</em>
<a id='L319' name='L319'></a> 319 <a href='../Y/cols.html' title='Multiple used in 449 places.'>cols</a> = <a href='../S/lib--tty--tty-slang.h.html#L11' title='Defined at 11 in lib/tty/tty-slang.h.'>COLS</a>;
<a id='L320' name='L320'></a> 320 <a href='../Y/file_gb_len.html' title='Multiple used in 9 places.'>file_gb_len</a> = <a href='../Y/cols.html' title='Multiple used in 449 places.'>cols</a> - (<a href='../Y/perm_gb_len.html' title='Multiple used in 7 places.'>perm_gb_len</a> + 1 + 6);
<a id='L321' name='L321'></a> 321 <em class='brace'>}</em>
<a id='L322' name='L322'></a> 322
<a id='L323' name='L323'></a> 323 <a href='../Y/ch_dlg.html' title='Multiple used in 41 places.'>ch_dlg</a> = <a href='../S/lib--widget--dialog.c.html#L368' title='Defined at 368 in lib/widget/dialog.c.'>dlg_create</a> (<a href='../Y/TRUE.html' title='Multiple used in 1990 places.'>TRUE</a>, 0, 0, <a href='../Y/lines.html' title='Multiple used in 377 places.'>lines</a>, <a href='../Y/cols.html' title='Multiple used in 449 places.'>cols</a>, <a href='../S/lib--widget--widget-common.h.html#L102' title='Defined at 102 in lib/widget/widget-common.h.'>WPOS_CENTER</a>, <a href='../Y/FALSE.html' title='Multiple used in 1723 places.'>FALSE</a>, <a href='../Y/dialog_colors.html' title='Multiple used in 38 places.'>dialog_colors</a>, <a href='../S/src--filemanager--chmod.c.html#L235' title='Defined at 235 in src/filemanager/chmod.c.'>chmod_callback</a>,
<a id='L324' name='L324'></a> 324 <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>, "[Chmod]", <a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("Chmod command"));
<a id='L325' name='L325'></a> 325 <a href='../Y/g.html' title='Multiple used in 537 places.'>g</a> = <a href='../S/lib--widget--group.h.html#L16' title='Defined at 16 in lib/widget/group.h.'>GROUP</a> (<a href='../Y/ch_dlg.html' title='Multiple used in 41 places.'>ch_dlg</a>);
<a id='L326' name='L326'></a> 326
<a id='L327' name='L327'></a> 327 <em class='comment'>// draw background</em>
<a id='L328' name='L328'></a> 328 <a href='../Y/ch_dlg.html' title='Multiple used in 41 places.'>ch_dlg</a>-&gt;<a href='../Y/bg.html' title='Multiple used in 45 places.'>bg</a>-&gt;<a href='../Y/callback.html' title='Multiple used in 108 places.'>callback</a> = <a href='../S/src--filemanager--chmod.c.html#L218' title='Defined at 218 in src/filemanager/chmod.c.'>chmod_bg_callback</a>;
<a id='L329' name='L329'></a> 329
<a id='L330' name='L330'></a> 330 <a href='../S/lib--widget--group.h.html#L79' title='Defined at 79 in lib/widget/group.h.'>group_add_widget</a> (<a href='../Y/g.html' title='Multiple used in 537 places.'>g</a>, <a href='../S/lib--widget--groupbox.c.html#L100' title='Defined at 100 in lib/widget/groupbox.c.'>groupbox_new</a> (<a href='../S/src--filemanager--chmod.c.html#L52' title='Defined at 52 in src/filemanager/chmod.c.'>PY</a>, <a href='../S/src--filemanager--chmod.c.html#L51' title='Defined at 51 in src/filemanager/chmod.c.'>PX</a>, <a href='../D/BUTTONS_PERM.html' title='Multiple defined in 2 places.'>BUTTONS_PERM</a> + 2, <a href='../Y/perm_gb_len.html' title='Multiple used in 7 places.'>perm_gb_len</a>, <a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("Permission")));
<a id='L331' name='L331'></a> 331
<a id='L332' name='L332'></a> 332 <strong class='reserved'>for</strong> (<a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a> = 0; <a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a> &lt; <a href='../D/BUTTONS_PERM.html' title='Multiple defined in 2 places.'>BUTTONS_PERM</a>; <a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>++)
<a id='L333' name='L333'></a> 333 <em class='brace'>{</em>
<a id='L334' name='L334'></a> 334 <a href='../Y/check_perm.html' title='Multiple used in 21 places.'>check_perm</a>[<a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>].<a href='../Y/check.html' title='Multiple used in 18 places.'>check</a> =
<a id='L335' name='L335'></a> 335 <a href='../S/lib--widget--check.c.html#L138' title='Defined at 138 in lib/widget/check.c.'>check_new</a> (<a href='../S/src--filemanager--chmod.c.html#L52' title='Defined at 52 in src/filemanager/chmod.c.'>PY</a> + <a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a> + 1, <a href='../S/src--filemanager--chmod.c.html#L51' title='Defined at 51 in src/filemanager/chmod.c.'>PX</a> + 2, (<a href='../Y/ch_mode.html' title='Multiple used in 9 places.'>ch_mode</a> &amp; <a href='../Y/check_perm.html' title='Multiple used in 21 places.'>check_perm</a>[<a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>].<a href='../Y/mode.html' title='Multiple used in 188 places.'>mode</a>) != 0, <a href='../Y/check_perm.html' title='Multiple used in 21 places.'>check_perm</a>[<a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>].<a href='../Y/text.html' title='Multiple used in 951 places.'>text</a>);
<a id='L336' name='L336'></a> 336 <a href='../S/lib--widget--group.h.html#L79' title='Defined at 79 in lib/widget/group.h.'>group_add_widget</a> (<a href='../Y/g.html' title='Multiple used in 537 places.'>g</a>, <a href='../Y/check_perm.html' title='Multiple used in 21 places.'>check_perm</a>[<a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>].<a href='../Y/check.html' title='Multiple used in 18 places.'>check</a>);
<a id='L337' name='L337'></a> 337 <em class='brace'>}</em>
<a id='L338' name='L338'></a> 338
<a id='L339' name='L339'></a> 339 <a href='../Y/file_gb.html' title='Multiple used in 5 places.'>file_gb</a> = <a href='../S/lib--widget--groupbox.c.html#L100' title='Defined at 100 in lib/widget/groupbox.c.'>groupbox_new</a> (<a href='../S/src--filemanager--chmod.c.html#L52' title='Defined at 52 in src/filemanager/chmod.c.'>PY</a>, <a href='../S/src--filemanager--chmod.c.html#L51' title='Defined at 51 in src/filemanager/chmod.c.'>PX</a> + <a href='../Y/perm_gb_len.html' title='Multiple used in 7 places.'>perm_gb_len</a> + 1, <a href='../D/BUTTONS_PERM.html' title='Multiple defined in 2 places.'>BUTTONS_PERM</a> + 2, <a href='../Y/file_gb_len.html' title='Multiple used in 9 places.'>file_gb_len</a>, <a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("File"));
<a id='L340' name='L340'></a> 340 <a href='../S/lib--widget--group.h.html#L79' title='Defined at 79 in lib/widget/group.h.'>group_add_widget</a> (<a href='../Y/g.html' title='Multiple used in 537 places.'>g</a>, <a href='../Y/file_gb.html' title='Multiple used in 5 places.'>file_gb</a>);
<a id='L341' name='L341'></a> 341
<a id='L342' name='L342'></a> 342 <em class='comment'>// Set the labels</em>
<a id='L343' name='L343'></a> 343 <a href='../Y/y.html' title='Multiple used in 587 places.'>y</a> = <a href='../S/src--filemanager--chmod.c.html#L52' title='Defined at 52 in src/filemanager/chmod.c.'>PY</a> + 2;
<a id='L344' name='L344'></a> 344 <a href='../Y/cols.html' title='Multiple used in 449 places.'>cols</a> = <a href='../S/src--filemanager--chmod.c.html#L51' title='Defined at 51 in src/filemanager/chmod.c.'>PX</a> + <a href='../Y/perm_gb_len.html' title='Multiple used in 7 places.'>perm_gb_len</a> + 3;
<a id='L345' name='L345'></a> 345 <a href='../Y/c_fname.html' title='Multiple used in 3 places.'>c_fname</a> = <a href='../S/lib--strutil--strutil.c.html#L795' title='Defined at 795 in lib/strutil/strutil.c.'>str_trunc</a> (<a href='../Y/fname.html' title='Multiple used in 307 places.'>fname</a>, <a href='../Y/file_gb_len.html' title='Multiple used in 9 places.'>file_gb_len</a> - 3);
<a id='L346' name='L346'></a> 346 <a href='../S/lib--widget--group.h.html#L79' title='Defined at 79 in lib/widget/group.h.'>group_add_widget</a> (<a href='../Y/g.html' title='Multiple used in 537 places.'>g</a>, <a href='../S/lib--widget--label.c.html#L133' title='Defined at 133 in lib/widget/label.c.'>label_new</a> (<a href='../Y/y.html' title='Multiple used in 587 places.'>y</a>, <a href='../Y/cols.html' title='Multiple used in 449 places.'>cols</a>, <a href='../Y/c_fname.html' title='Multiple used in 3 places.'>c_fname</a>));
<a id='L347' name='L347'></a> 347 <a href='../Y/g_snprintf.html' title='Multiple used in 97 places.'>g_snprintf</a> (<a href='../Y/buffer.html' title='Multiple used in 996 places.'>buffer</a>, <strong class='reserved'>sizeof</strong> (<a href='../Y/buffer.html' title='Multiple used in 996 places.'>buffer</a>), "%o", (<strong class='reserved'>unsigned</strong> <strong class='reserved'>int</strong>) <a href='../Y/ch_mode.html' title='Multiple used in 9 places.'>ch_mode</a>);
<a id='L348' name='L348'></a> 348 <a href='../Y/statl.html' title='Multiple used in 4 places.'>statl</a> = <a href='../S/lib--widget--label.c.html#L133' title='Defined at 133 in lib/widget/label.c.'>label_new</a> (<a href='../Y/y.html' title='Multiple used in 587 places.'>y</a> + 2, <a href='../Y/cols.html' title='Multiple used in 449 places.'>cols</a>, <a href='../Y/buffer.html' title='Multiple used in 996 places.'>buffer</a>);
<a id='L349' name='L349'></a> 349 <a href='../S/lib--widget--group.h.html#L79' title='Defined at 79 in lib/widget/group.h.'>group_add_widget</a> (<a href='../Y/g.html' title='Multiple used in 537 places.'>g</a>, <a href='../Y/statl.html' title='Multiple used in 4 places.'>statl</a>);
<a id='L350' name='L350'></a> 350 <a href='../Y/c_fown.html' title='Multiple used in 3 places.'>c_fown</a> = <a href='../S/lib--strutil--strutil.c.html#L795' title='Defined at 795 in lib/strutil/strutil.c.'>str_trunc</a> (<a href='../S/lib--utilunix.c.html#L268' title='Defined at 268 in lib/utilunix.c.'>get_owner</a> (<a href='../Y/sf_stat.html' title='Multiple used in 30 places.'>sf_stat</a>-&gt;<a href='../Y/st_uid.html' title='Multiple used in 49 places.'>st_uid</a>), <a href='../Y/file_gb_len.html' title='Multiple used in 9 places.'>file_gb_len</a> - 3);
<a id='L351' name='L351'></a> 351 <a href='../S/lib--widget--group.h.html#L79' title='Defined at 79 in lib/widget/group.h.'>group_add_widget</a> (<a href='../Y/g.html' title='Multiple used in 537 places.'>g</a>, <a href='../S/lib--widget--label.c.html#L133' title='Defined at 133 in lib/widget/label.c.'>label_new</a> (<a href='../Y/y.html' title='Multiple used in 587 places.'>y</a> + 4, <a href='../Y/cols.html' title='Multiple used in 449 places.'>cols</a>, <a href='../Y/c_fown.html' title='Multiple used in 3 places.'>c_fown</a>));
<a id='L352' name='L352'></a> 352 <a href='../Y/c_fgrp.html' title='Multiple used in 3 places.'>c_fgrp</a> = <a href='../S/lib--strutil--strutil.c.html#L795' title='Defined at 795 in lib/strutil/strutil.c.'>str_trunc</a> (<a href='../S/lib--utilunix.c.html#L296' title='Defined at 296 in lib/utilunix.c.'>get_group</a> (<a href='../Y/sf_stat.html' title='Multiple used in 30 places.'>sf_stat</a>-&gt;<a href='../Y/st_gid.html' title='Multiple used in 42 places.'>st_gid</a>), <a href='../Y/file_gb_len.html' title='Multiple used in 9 places.'>file_gb_len</a> - 3);
<a id='L353' name='L353'></a> 353 <a href='../S/lib--widget--group.h.html#L79' title='Defined at 79 in lib/widget/group.h.'>group_add_widget</a> (<a href='../Y/g.html' title='Multiple used in 537 places.'>g</a>, <a href='../S/lib--widget--label.c.html#L133' title='Defined at 133 in lib/widget/label.c.'>label_new</a> (<a href='../Y/y.html' title='Multiple used in 587 places.'>y</a> + 6, <a href='../Y/cols.html' title='Multiple used in 449 places.'>cols</a>, <a href='../Y/c_fgrp.html' title='Multiple used in 3 places.'>c_fgrp</a>));
<a id='L354' name='L354'></a> 354
<a id='L355' name='L355'></a> 355 <strong class='reserved'>for</strong> (<a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a> = <a href='../Y/single_set.html' title='Multiple used in 17 places.'>single_set</a> ? <a href='../D/BUTTONS.html' title='Multiple defined in 4 places.'>BUTTONS</a> - 2 : 0; <a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a> &lt; <a href='../D/BUTTONS.html' title='Multiple defined in 4 places.'>BUTTONS</a>; <a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>++)
<a id='L356' name='L356'></a> 356 <em class='brace'>{</em>
<a id='L357' name='L357'></a> 357 <a href='../D/WButton.html' title='Multiple defined in 2 places.'>WButton</a> *<a href='../Y/b.html' title='Multiple used in 653 places.'>b</a>;
<a id='L358' name='L358'></a> 358
<a id='L359' name='L359'></a> 359 <a href='../Y/y.html' title='Multiple used in 587 places.'>y</a> = <a href='../Y/lines.html' title='Multiple used in 377 places.'>lines</a> - <a href='../Y/chmod_but.html' title='Multiple used in 5 places.'>chmod_but</a>[<a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>].<a href='../Y/y.html' title='Multiple used in 587 places.'>y</a>;
<a id='L360' name='L360'></a> 360
<a id='L361' name='L361'></a> 361 <strong class='reserved'>if</strong> (<a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a> == 0 || <a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a> == <a href='../D/BUTTONS.html' title='Multiple defined in 4 places.'>BUTTONS</a> - 2)
<a id='L362' name='L362'></a> 362 <a href='../S/lib--widget--group.h.html#L79' title='Defined at 79 in lib/widget/group.h.'>group_add_widget</a> (<a href='../Y/g.html' title='Multiple used in 537 places.'>g</a>, <a href='../S/lib--widget--hline.c.html#L147' title='Defined at 147 in lib/widget/hline.c.'>hline_new</a> (<a href='../Y/y.html' title='Multiple used in 587 places.'>y</a> - 1, -1, -1));
<a id='L363' name='L363'></a> 363
<a id='L364' name='L364'></a> 364 <a href='../Y/b.html' title='Multiple used in 653 places.'>b</a> = <a href='../S/lib--widget--button.c.html#L207' title='Defined at 207 in lib/widget/button.c.'>button_new</a> (<a href='../Y/y.html' title='Multiple used in 587 places.'>y</a>, 1, <a href='../Y/chmod_but.html' title='Multiple used in 5 places.'>chmod_but</a>[<a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>].<a href='../Y/ret_cmd.html' title='Multiple used in 22 places.'>ret_cmd</a>, <a href='../Y/chmod_but.html' title='Multiple used in 5 places.'>chmod_but</a>[<a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>].<a href='../Y/flags.html' title='Multiple used in 398 places.'>flags</a>, <a href='../Y/chmod_but.html' title='Multiple used in 5 places.'>chmod_but</a>[<a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>].<a href='../Y/text.html' title='Multiple used in 951 places.'>text</a>, <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>);
<a id='L365' name='L365'></a> 365 <a href='../S/lib--widget--widget-common.h.html#L15' title='Defined at 15 in lib/widget/widget-common.h.'>WIDGET</a> (<a href='../Y/b.html' title='Multiple used in 653 places.'>b</a>)-&gt;<a href='../Y/rect.html' title='Multiple used in 436 places.'>rect</a>.<a href='../Y/x.html' title='Multiple used in 677 places.'>x</a> = <a href='../S/lib--widget--widget-common.h.html#L15' title='Defined at 15 in lib/widget/widget-common.h.'>WIDGET</a> (<a href='../Y/ch_dlg.html' title='Multiple used in 41 places.'>ch_dlg</a>)-&gt;<a href='../Y/rect.html' title='Multiple used in 436 places.'>rect</a>.<a href='../Y/cols.html' title='Multiple used in 449 places.'>cols</a> / 2 - <a href='../S/lib--widget--button.c.html#L261' title='Defined at 261 in lib/widget/button.c.'>button_get_width</a> (<a href='../Y/b.html' title='Multiple used in 653 places.'>b</a>);
<a id='L366' name='L366'></a> 366 <a href='../S/lib--widget--group.h.html#L79' title='Defined at 79 in lib/widget/group.h.'>group_add_widget</a> (<a href='../Y/g.html' title='Multiple used in 537 places.'>g</a>, <a href='../Y/b.html' title='Multiple used in 653 places.'>b</a>);
<a id='L367' name='L367'></a> 367 <a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>++;
<a id='L368' name='L368'></a> 368 <a href='../Y/b.html' title='Multiple used in 653 places.'>b</a> = <a href='../S/lib--widget--button.c.html#L207' title='Defined at 207 in lib/widget/button.c.'>button_new</a> (<a href='../Y/y.html' title='Multiple used in 587 places.'>y</a>, 1, <a href='../Y/chmod_but.html' title='Multiple used in 5 places.'>chmod_but</a>[<a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>].<a href='../Y/ret_cmd.html' title='Multiple used in 22 places.'>ret_cmd</a>, <a href='../Y/chmod_but.html' title='Multiple used in 5 places.'>chmod_but</a>[<a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>].<a href='../Y/flags.html' title='Multiple used in 398 places.'>flags</a>, <a href='../Y/chmod_but.html' title='Multiple used in 5 places.'>chmod_but</a>[<a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>].<a href='../Y/text.html' title='Multiple used in 951 places.'>text</a>, <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>);
<a id='L369' name='L369'></a> 369 <a href='../S/lib--widget--widget-common.h.html#L15' title='Defined at 15 in lib/widget/widget-common.h.'>WIDGET</a> (<a href='../Y/b.html' title='Multiple used in 653 places.'>b</a>)-&gt;<a href='../Y/rect.html' title='Multiple used in 436 places.'>rect</a>.<a href='../Y/x.html' title='Multiple used in 677 places.'>x</a> = <a href='../S/lib--widget--widget-common.h.html#L15' title='Defined at 15 in lib/widget/widget-common.h.'>WIDGET</a> (<a href='../Y/ch_dlg.html' title='Multiple used in 41 places.'>ch_dlg</a>)-&gt;<a href='../Y/rect.html' title='Multiple used in 436 places.'>rect</a>.<a href='../Y/cols.html' title='Multiple used in 449 places.'>cols</a> / 2 + 1;
<a id='L370' name='L370'></a> 370 <a href='../S/lib--widget--group.h.html#L79' title='Defined at 79 in lib/widget/group.h.'>group_add_widget</a> (<a href='../Y/g.html' title='Multiple used in 537 places.'>g</a>, <a href='../Y/b.html' title='Multiple used in 653 places.'>b</a>);
<a id='L371' name='L371'></a> 371 <em class='brace'>}</em>
<a id='L372' name='L372'></a> 372
<a id='L373' name='L373'></a> 373 <em class='comment'>// select first checkbox</em>
<a id='L374' name='L374'></a> 374 <a href='../S/lib--widget--widget-common.c.html#L622' title='Defined at 622 in lib/widget/widget-common.c.'>widget_select</a> (<a href='../S/lib--widget--widget-common.h.html#L15' title='Defined at 15 in lib/widget/widget-common.h.'>WIDGET</a> (<a href='../Y/check_perm.html' title='Multiple used in 21 places.'>check_perm</a>[0].<a href='../Y/check.html' title='Multiple used in 18 places.'>check</a>));
<a id='L375' name='L375'></a> 375
<a id='L376' name='L376'></a> 376 <strong class='reserved'>return</strong> <a href='../Y/ch_dlg.html' title='Multiple used in 41 places.'>ch_dlg</a>;
<a id='L377' name='L377'></a> 377 <em class='brace'>}</em>
<a id='L378' name='L378'></a> 378
<a id='L379' name='L379'></a> 379 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
<a id='L380' name='L380'></a> 380
<a id='L381' name='L381'></a> 381 <strong class='reserved'>static</strong> <strong class='reserved'>void</strong>
<a id='L382' name='L382'></a> 382 <a href='../S/src--filemanager--chmod.c.html#L619' title='Referred from 619 in src/filemanager/chmod.c.'>chmod_done</a> (<a href='../Y/gboolean.html' title='Multiple used in 1942 places.'>gboolean</a> <a href='../Y/need_update.html' title='Multiple used in 37 places.'>need_update</a>)
<em class='comment'>/* <a href='#L293'><img class='icon' src='../icons/left.png' alt='[previous]' /></a><a href='#L392'><img class='icon' src='../icons/right.png' alt='[next]' /></a><a href='#L130'><img class='icon' src='../icons/first.png' alt='[first]' /></a><a href='#L491'><img class='icon' src='../icons/last.png' alt='[last]' /></a><a href='#TOP'><img class='icon' src='../icons/top.png' alt='[top]' /></a><a href='#BOTTOM'><img class='icon' src='../icons/bottom.png' alt='[bottom]' /></a><a href='../mains.html'><img class='icon' src='../icons/index.png' alt='[index]' /></a><a href='../help.html'><img class='icon' src='../icons/help.png' alt='[help]' /></a>&nbsp;<input type='text' readonly onfocus='this.select();' value='+382 src/filemanager/chmod.c' /> */</em>
<a id='L383' name='L383'></a> 383 <em class='brace'>{</em>
<a id='L384' name='L384'></a> 384 <strong class='reserved'>if</strong> (<a href='../Y/need_update.html' title='Multiple used in 37 places.'>need_update</a>)
<a id='L385' name='L385'></a> 385 <a href='../S/src--filemanager--panel.c.html#L5106' title='Defined at 5106 in src/filemanager/panel.c.'>update_panels</a> (<a href='../S/src--filemanager--panel.h.html#L46' title='Defined at 46 in src/filemanager/panel.h.'>UP_OPTIMIZE</a>, <a href='../S/src--filemanager--panel.h.html#L26' title='Defined at 26 in src/filemanager/panel.h.'>UP_KEEPSEL</a>);
<a id='L386' name='L386'></a> 386 <a href='../S/lib--widget--dialog-switch.c.html#L368' title='Defined at 368 in lib/widget/dialog-switch.c.'>repaint_screen</a> ();
<a id='L387' name='L387'></a> 387 <em class='brace'>}</em>
<a id='L388' name='L388'></a> 388
<a id='L389' name='L389'></a> 389 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
<a id='L390' name='L390'></a> 390
<a id='L391' name='L391'></a> 391 <strong class='reserved'>static</strong> <a href='../Y/gboolean.html' title='Multiple used in 1942 places.'>gboolean</a>
<a id='L392' name='L392'></a> 392 <a href='../R/try_chmod.html' title='Multiple referred from 2 places.'>try_chmod</a> (<strong class='reserved'>const</strong> <a href='../S/lib--vfs--path.h.html#L31' title='Defined at 31 in lib/vfs/path.h.'>vfs_path_t</a> *<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>, <a href='../Y/mode_t.html' title='Multiple used in 99 places.'>mode_t</a> <a href='../Y/m.html' title='Multiple used in 82 places.'>m</a>)
<em class='comment'>/* <a href='#L382'><img class='icon' src='../icons/left.png' alt='[previous]' /></a><a href='#L433'><img class='icon' src='../icons/right.png' alt='[next]' /></a><a href='#L130'><img class='icon' src='../icons/first.png' alt='[first]' /></a><a href='#L491'><img class='icon' src='../icons/last.png' alt='[last]' /></a><a href='#TOP'><img class='icon' src='../icons/top.png' alt='[top]' /></a><a href='#BOTTOM'><img class='icon' src='../icons/bottom.png' alt='[bottom]' /></a><a href='../mains.html'><img class='icon' src='../icons/index.png' alt='[index]' /></a><a href='../help.html'><img class='icon' src='../icons/help.png' alt='[help]' /></a>&nbsp;<input type='text' readonly onfocus='this.select();' value='+392 src/filemanager/chmod.c' /> */</em>
<a id='L393' name='L393'></a> 393 <em class='brace'>{</em>
<a id='L394' name='L394'></a> 394 <strong class='reserved'>const</strong> <strong class='reserved'>char</strong> *<a href='../Y/fname.html' title='Multiple used in 307 places.'>fname</a> = <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>;
<a id='L395' name='L395'></a> 395
<a id='L396' name='L396'></a> 396 <strong class='reserved'>while</strong> (<a href='../Y/mc_chmod.html' title='Multiple used in 14 places.'>mc_chmod</a> (<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>, <a href='../Y/m.html' title='Multiple used in 82 places.'>m</a>) == -1 &amp;&amp; !<a href='../Y/ignore_all.html' title='Multiple used in 102 places.'>ignore_all</a>)
<a id='L397' name='L397'></a> 397 <em class='brace'>{</em>
<a id='L398' name='L398'></a> 398 <strong class='reserved'>int</strong> <a href='../Y/my_errno.html' title='Multiple used in 28 places.'>my_errno</a> = <a href='../Y/errno.html' title='Multiple used in 200 places.'>errno</a>;
<a id='L399' name='L399'></a> 399
<a id='L400' name='L400'></a> 400 <strong class='reserved'>if</strong> (<a href='../Y/fname.html' title='Multiple used in 307 places.'>fname</a> == <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>)
<a id='L401' name='L401'></a> 401 <a href='../Y/fname.html' title='Multiple used in 307 places.'>fname</a> = <a href='../S/lib--util.c.html#L652' title='Defined at 652 in lib/util.c.'>x_basename</a> (<a href='../S/lib--vfs--path.h.html#L139' title='Defined at 139 in lib/vfs/path.h.'>vfs_path_as_str</a> (<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>));
<a id='L402' name='L402'></a> 402
<a id='L403' name='L403'></a> 403 <a href='../Y/errno.html' title='Multiple used in 200 places.'>errno</a> = <a href='../Y/my_errno.html' title='Multiple used in 28 places.'>my_errno</a>; <em class='comment'>// restore errno for file_error(</em>
<a id='L404' name='L404'></a> 404
<a id='L405' name='L405'></a> 405 <strong class='reserved'>switch</strong> (<a href='../S/src--filemanager--file.c.html#L3720' title='Defined at 3720 in src/filemanager/file.c.'>file_error</a> (<a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>, <a href='../Y/TRUE.html' title='Multiple used in 1990 places.'>TRUE</a>, <a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("Cannot chmod\n%sn%s"), <a href='../Y/fname.html' title='Multiple used in 307 places.'>fname</a>))
<a id='L406' name='L406'></a> 406 <em class='brace'>{</em>
<a id='L407' name='L407'></a> 407 <strong class='reserved'>case</strong> <a href='../S/src--filemanager--filegui.h.html#L51' title='Defined at 51 in src/filemanager/filegui.h.'>FILE_IGNORE</a>:
<a id='L408' name='L408'></a> 408 <em class='comment'>// try next file</em>
<a id='L409' name='L409'></a> 409 <strong class='reserved'>return</strong> <a href='../Y/TRUE.html' title='Multiple used in 1990 places.'>TRUE</a>;
<a id='L410' name='L410'></a> 410
<a id='L411' name='L411'></a> 411 <strong class='reserved'>case</strong> <a href='../S/src--filemanager--filegui.h.html#L52' title='Defined at 52 in src/filemanager/filegui.h.'>FILE_IGNORE_ALL</a>:
<a id='L412' name='L412'></a> 412 <a href='../Y/ignore_all.html' title='Multiple used in 102 places.'>ignore_all</a> = <a href='../Y/TRUE.html' title='Multiple used in 1990 places.'>TRUE</a>;
<a id='L413' name='L413'></a> 413 <em class='comment'>// try next file</em>
<a id='L414' name='L414'></a> 414 <strong class='reserved'>return</strong> <a href='../Y/TRUE.html' title='Multiple used in 1990 places.'>TRUE</a>;
<a id='L415' name='L415'></a> 415
<a id='L416' name='L416'></a> 416 <strong class='reserved'>case</strong> <a href='../S/src--filemanager--filegui.h.html#L48' title='Defined at 48 in src/filemanager/filegui.h.'>FILE_RETRY</a>:
<a id='L417' name='L417'></a> 417 <em class='comment'>// retry this file</em>
<a id='L418' name='L418'></a> 418 <strong class='reserved'>break</strong>;
<a id='L419' name='L419'></a> 419
<a id='L420' name='L420'></a> 420 <strong class='reserved'>case</strong> <a href='../S/src--filemanager--filegui.h.html#L50' title='Defined at 50 in src/filemanager/filegui.h.'>FILE_ABORT</a>:
<a id='L421' name='L421'></a> 421 <strong class='reserved'>default</strong>:
<a id='L422' name='L422'></a> 422 <em class='comment'>// stop remain files processing</em>
<a id='L423' name='L423'></a> 423 <strong class='reserved'>return</strong> <a href='../Y/FALSE.html' title='Multiple used in 1723 places.'>FALSE</a>;
<a id='L424' name='L424'></a> 424 <em class='brace'>}</em>
<a id='L425' name='L425'></a> 425 <em class='brace'>}</em>
<a id='L426' name='L426'></a> 426
<a id='L427' name='L427'></a> 427 <strong class='reserved'>return</strong> <a href='../Y/TRUE.html' title='Multiple used in 1990 places.'>TRUE</a>;
<a id='L428' name='L428'></a> 428 <em class='brace'>}</em>
<a id='L429' name='L429'></a> 429
<a id='L430' name='L430'></a> 430 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
<a id='L431' name='L431'></a> 431
<a id='L432' name='L432'></a> 432 <strong class='reserved'>static</strong> <a href='../Y/gboolean.html' title='Multiple used in 1942 places.'>gboolean</a>
<a id='L433' name='L433'></a> 433 <a href='../R/do_chmod.html' title='Multiple referred from 2 places.'>do_chmod</a> (<a href='../S/src--filemanager--panel.h.html#L142' title='Defined at 142 in src/filemanager/panel.h.'>WPanel</a> *<a href='../Y/panel.html' title='Multiple used in 1289 places.'>panel</a>, <strong class='reserved'>const</strong> <a href='../S/lib--vfs--path.h.html#L31' title='Defined at 31 in lib/vfs/path.h.'>vfs_path_t</a> *<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>, <strong class='reserved'>struct</strong> <a href='../Y/stat.html' title='Multiple used in 287 places.'>stat</a> *<a href='../Y/sf.html' title='Multiple used in 16 places.'>sf</a>)
<em class='comment'>/* <a href='#L392'><img class='icon' src='../icons/left.png' alt='[previous]' /></a><a href='#L450'><img class='icon' src='../icons/right.png' alt='[next]' /></a><a href='#L130'><img class='icon' src='../icons/first.png' alt='[first]' /></a><a href='#L491'><img class='icon' src='../icons/last.png' alt='[last]' /></a><a href='#TOP'><img class='icon' src='../icons/top.png' alt='[top]' /></a><a href='#BOTTOM'><img class='icon' src='../icons/bottom.png' alt='[bottom]' /></a><a href='../mains.html'><img class='icon' src='../icons/index.png' alt='[index]' /></a><a href='../help.html'><img class='icon' src='../icons/help.png' alt='[help]' /></a>&nbsp;<input type='text' readonly onfocus='this.select();' value='+433 src/filemanager/chmod.c' /> */</em>
<a id='L434' name='L434'></a> 434 <em class='brace'>{</em>
<a id='L435' name='L435'></a> 435 <a href='../Y/gboolean.html' title='Multiple used in 1942 places.'>gboolean</a> <a href='../Y/ret.html' title='Multiple used in 887 places.'>ret</a>;
<a id='L436' name='L436'></a> 436
<a id='L437' name='L437'></a> 437 <a href='../Y/sf.html' title='Multiple used in 16 places.'>sf</a>-&gt;<a href='../Y/st_mode.html' title='Multiple used in 242 places.'>st_mode</a> &amp;= <a href='../Y/and_mask.html' title='Multiple used in 17 places.'>and_mask</a>;
<a id='L438' name='L438'></a> 438 <a href='../Y/sf.html' title='Multiple used in 16 places.'>sf</a>-&gt;<a href='../Y/st_mode.html' title='Multiple used in 242 places.'>st_mode</a> |= <a href='../Y/or_mask.html' title='Multiple used in 14 places.'>or_mask</a>;
<a id='L439' name='L439'></a> 439
<a id='L440' name='L440'></a> 440 <a href='../Y/ret.html' title='Multiple used in 887 places.'>ret</a> = <a href='../S/src--filemanager--chmod.c.html#L392' title='Defined at 392 in src/filemanager/chmod.c.'>try_chmod</a> (<a href='../Y/p.html' title='Multiple used in 1572 places.'>p</a>, <a href='../Y/sf.html' title='Multiple used in 16 places.'>sf</a>-&gt;<a href='../Y/st_mode.html' title='Multiple used in 242 places.'>st_mode</a>);
<a id='L441' name='L441'></a> 441
<a id='L442' name='L442'></a> 442 <a href='../S/src--filemanager--panel.c.html#L4812' title='Defined at 4812 in src/filemanager/panel.c.'>do_file_mark</a> (<a href='../Y/panel.html' title='Multiple used in 1289 places.'>panel</a>, <a href='../Y/current_file.html' title='Multiple used in 51 places.'>current_file</a>, 0);
<a id='L443' name='L443'></a> 443
<a id='L444' name='L444'></a> 444 <strong class='reserved'>return</strong> <a href='../Y/ret.html' title='Multiple used in 887 places.'>ret</a>;
<a id='L445' name='L445'></a> 445 <em class='brace'>}</em>
<a id='L446' name='L446'></a> 446
<a id='L447' name='L447'></a> 447 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
<a id='L448' name='L448'></a> 448
<a id='L449' name='L449'></a> 449 <strong class='reserved'>static</strong> <strong class='reserved'>void</strong>
<a id='L450' name='L450'></a> 450 <a href='../R/apply_mask.html' title='Multiple referred from 3 places.'>apply_mask</a> (<a href='../S/src--filemanager--panel.h.html#L142' title='Defined at 142 in src/filemanager/panel.h.'>WPanel</a> *<a href='../Y/panel.html' title='Multiple used in 1289 places.'>panel</a>, <a href='../S/lib--vfs--path.h.html#L31' title='Defined at 31 in lib/vfs/path.h.'>vfs_path_t</a> *<a href='../Y/vpath.html' title='Multiple used in 942 places.'>vpath</a>, <strong class='reserved'>struct</strong> <a href='../Y/stat.html' title='Multiple used in 287 places.'>stat</a> *<a href='../Y/sf.html' title='Multiple used in 16 places.'>sf</a>)
<em class='comment'>/* <a href='#L433'><img class='icon' src='../icons/left.png' alt='[previous]' /></a><a href='#L491'><img class='icon' src='../icons/right.png' alt='[next]' /></a><a href='#L130'><img class='icon' src='../icons/first.png' alt='[first]' /></a><a href='#L491'><img class='icon' src='../icons/last.png' alt='[last]' /></a><a href='#TOP'><img class='icon' src='../icons/top.png' alt='[top]' /></a><a href='#BOTTOM'><img class='icon' src='../icons/bottom.png' alt='[bottom]' /></a><a href='../mains.html'><img class='icon' src='../icons/index.png' alt='[index]' /></a><a href='../help.html'><img class='icon' src='../icons/help.png' alt='[help]' /></a>&nbsp;<input type='text' readonly onfocus='this.select();' value='+450 src/filemanager/chmod.c' /> */</em>
<a id='L451' name='L451'></a> 451 <em class='brace'>{</em>
<a id='L452' name='L452'></a> 452 <a href='../Y/gboolean.html' title='Multiple used in 1942 places.'>gboolean</a> <a href='../Y/ok.html' title='Multiple used in 194 places.'>ok</a>;
<a id='L453' name='L453'></a> 453
<a id='L454' name='L454'></a> 454 <strong class='reserved'>if</strong> (!<a href='../S/src--filemanager--chmod.c.html#L433' title='Defined at 433 in src/filemanager/chmod.c.'>do_chmod</a> (<a href='../Y/panel.html' title='Multiple used in 1289 places.'>panel</a>, <a href='../Y/vpath.html' title='Multiple used in 942 places.'>vpath</a>, <a href='../Y/sf.html' title='Multiple used in 16 places.'>sf</a>))
<a id='L455' name='L455'></a> 455 <strong class='reserved'>return</strong>;
<a id='L456' name='L456'></a> 456
<a id='L457' name='L457'></a> 457 <strong class='reserved'>do</strong>
<a id='L458' name='L458'></a> 458 <em class='brace'>{</em>
<a id='L459' name='L459'></a> 459 <strong class='reserved'>const</strong> <a href='../Y/GString.html' title='Multiple used in 317 places.'>GString</a> *<a href='../Y/fname.html' title='Multiple used in 307 places.'>fname</a>;
<a id='L460' name='L460'></a> 460
<a id='L461' name='L461'></a> 461 <a href='../Y/fname.html' title='Multiple used in 307 places.'>fname</a> = <a href='../S/src--filemanager--panel.c.html#L4892' title='Defined at 4892 in src/filemanager/panel.c.'>panel_find_marked_file</a> (<a href='../Y/panel.html' title='Multiple used in 1289 places.'>panel</a>, &amp;<a href='../Y/current_file.html' title='Multiple used in 51 places.'>current_file</a>);
<a id='L462' name='L462'></a> 462 <a href='../Y/vpath.html' title='Multiple used in 942 places.'>vpath</a> = <a href='../S/lib--vfs--path.c.html#L722' title='Defined at 722 in lib/vfs/path.c.'>vfs_path_from_str</a> (<a href='../Y/fname.html' title='Multiple used in 307 places.'>fname</a>-&gt;<a href='../Y/str.html' title='Multiple used in 654 places.'>str</a>);
<a id='L463' name='L463'></a> 463 <a href='../Y/ok.html' title='Multiple used in 194 places.'>ok</a> = (<a href='../D/mc_stat.html' title='Multiple defined in 2 places.'>mc_stat</a> (<a href='../Y/vpath.html' title='Multiple used in 942 places.'>vpath</a>, <a href='../Y/sf.html' title='Multiple used in 16 places.'>sf</a>) == 0);
<a id='L464' name='L464'></a> 464
<a id='L465' name='L465'></a> 465 <strong class='reserved'>if</strong> (!<a href='../Y/ok.html' title='Multiple used in 194 places.'>ok</a>)
<a id='L466' name='L466'></a> 466 <em class='brace'>{</em>
<a id='L467' name='L467'></a> 467 <em class='comment'>// if current file was deleted outside mc -- try next file</em>
<a id='L468' name='L468'></a> 468 <em class='comment'>// decrease panel-&gt;marked</em>
<a id='L469' name='L469'></a> 469 <a href='../S/src--filemanager--panel.c.html#L4812' title='Defined at 4812 in src/filemanager/panel.c.'>do_file_mark</a> (<a href='../Y/panel.html' title='Multiple used in 1289 places.'>panel</a>, <a href='../Y/current_file.html' title='Multiple used in 51 places.'>current_file</a>, 0);
<a id='L470' name='L470'></a> 470
<a id='L471' name='L471'></a> 471 <em class='comment'>// try next file</em>
<a id='L472' name='L472'></a> 472 <a href='../Y/ok.html' title='Multiple used in 194 places.'>ok</a> = <a href='../Y/TRUE.html' title='Multiple used in 1990 places.'>TRUE</a>;
<a id='L473' name='L473'></a> 473 <em class='brace'>}</em>
<a id='L474' name='L474'></a> 474 <strong class='reserved'>else</strong>
<a id='L475' name='L475'></a> 475 <em class='brace'>{</em>
<a id='L476' name='L476'></a> 476 <a href='../Y/ch_mode.html' title='Multiple used in 9 places.'>ch_mode</a> = <a href='../Y/sf.html' title='Multiple used in 16 places.'>sf</a>-&gt;<a href='../Y/st_mode.html' title='Multiple used in 242 places.'>st_mode</a>;
<a id='L477' name='L477'></a> 477
<a id='L478' name='L478'></a> 478 <a href='../Y/ok.html' title='Multiple used in 194 places.'>ok</a> = <a href='../S/src--filemanager--chmod.c.html#L433' title='Defined at 433 in src/filemanager/chmod.c.'>do_chmod</a> (<a href='../Y/panel.html' title='Multiple used in 1289 places.'>panel</a>, <a href='../Y/vpath.html' title='Multiple used in 942 places.'>vpath</a>, <a href='../Y/sf.html' title='Multiple used in 16 places.'>sf</a>);
<a id='L479' name='L479'></a> 479 <em class='brace'>}</em>
<a id='L480' name='L480'></a> 480
<a id='L481' name='L481'></a> 481 <a href='../S/lib--vfs--path.c.html#L918' title='Defined at 918 in lib/vfs/path.c.'>vfs_path_free</a> (<a href='../Y/vpath.html' title='Multiple used in 942 places.'>vpath</a>, <a href='../Y/TRUE.html' title='Multiple used in 1990 places.'>TRUE</a>);
<a id='L482' name='L482'></a> 482 <em class='brace'>}</em>
<a id='L483' name='L483'></a> 483 <strong class='reserved'>while</strong> (<a href='../Y/ok.html' title='Multiple used in 194 places.'>ok</a> &amp;&amp; <a href='../Y/panel.html' title='Multiple used in 1289 places.'>panel</a>-&gt;<a href='../Y/marked.html' title='Multiple used in 99 places.'>marked</a> != 0);
<a id='L484' name='L484'></a> 484 <em class='brace'>}</em>
<a id='L485' name='L485'></a> 485
<a id='L486' name='L486'></a> 486 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
<a id='L487' name='L487'></a> 487 <em class='comment'>/*** public functions ****************************************************************************/</em>
<a id='L488' name='L488'></a> 488 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
<a id='L489' name='L489'></a> 489
<a id='L490' name='L490'></a> 490 <strong class='reserved'>void</strong>
<a id='L491' name='L491'></a> 491 <a href='../R/chmod_cmd.html' title='Multiple referred from 2 places.'>chmod_cmd</a> (<a href='../S/src--filemanager--panel.h.html#L142' title='Defined at 142 in src/filemanager/panel.h.'>WPanel</a> *<a href='../Y/panel.html' title='Multiple used in 1289 places.'>panel</a>)
<em class='comment'>/* <a href='#L450'><img class='icon' src='../icons/left.png' alt='[previous]' /></a><img class='icon' src='../icons/n_right.png' alt='[next]' /><a href='#L130'><img class='icon' src='../icons/first.png' alt='[first]' /></a><img class='icon' src='../icons/n_last.png' alt='[last]' /><a href='#TOP'><img class='icon' src='../icons/top.png' alt='[top]' /></a><a href='#BOTTOM'><img class='icon' src='../icons/bottom.png' alt='[bottom]' /></a><a href='../mains.html'><img class='icon' src='../icons/index.png' alt='[index]' /></a><a href='../help.html'><img class='icon' src='../icons/help.png' alt='[help]' /></a>&nbsp;<input type='text' readonly onfocus='this.select();' value='+491 src/filemanager/chmod.c' /> */</em>
<a id='L492' name='L492'></a> 492 <em class='brace'>{</em>
<a id='L493' name='L493'></a> 493 <a href='../Y/gboolean.html' title='Multiple used in 1942 places.'>gboolean</a> <a href='../Y/need_update.html' title='Multiple used in 37 places.'>need_update</a>;
<a id='L494' name='L494'></a> 494 <a href='../Y/gboolean.html' title='Multiple used in 1942 places.'>gboolean</a> <a href='../Y/end_chmod.html' title='Multiple used in 9 places.'>end_chmod</a>;
<a id='L495' name='L495'></a> 495
<a id='L496' name='L496'></a> 496 <a href='../S/src--filemanager--chmod.c.html#L130' title='Defined at 130 in src/filemanager/chmod.c.'>chmod_init</a> ();
<a id='L497' name='L497'></a> 497
<a id='L498' name='L498'></a> 498 <a href='../Y/current_file.html' title='Multiple used in 51 places.'>current_file</a> = 0;
<a id='L499' name='L499'></a> 499 <a href='../Y/ignore_all.html' title='Multiple used in 102 places.'>ignore_all</a> = <a href='../Y/FALSE.html' title='Multiple used in 1723 places.'>FALSE</a>;
<a id='L500' name='L500'></a> 500
<a id='L501' name='L501'></a> 501 <strong class='reserved'>do</strong>
<a id='L502' name='L502'></a> 502 <em class='brace'>{</em> <em class='comment'>// do while any files remaining</em>
<a id='L503' name='L503'></a> 503 <a href='../S/lib--vfs--path.h.html#L31' title='Defined at 31 in lib/vfs/path.h.'>vfs_path_t</a> *<a href='../Y/vpath.html' title='Multiple used in 942 places.'>vpath</a>;
<a id='L504' name='L504'></a> 504 <a href='../D/WDialog.html' title='Multiple defined in 2 places.'>WDialog</a> *<a href='../Y/ch_dlg.html' title='Multiple used in 41 places.'>ch_dlg</a>;
<a id='L505' name='L505'></a> 505 <strong class='reserved'>struct</strong> <a href='../Y/stat.html' title='Multiple used in 287 places.'>stat</a> <a href='../Y/sf_stat.html' title='Multiple used in 30 places.'>sf_stat</a>;
<a id='L506' name='L506'></a> 506 <strong class='reserved'>const</strong> <a href='../Y/GString.html' title='Multiple used in 317 places.'>GString</a> *<a href='../Y/fname.html' title='Multiple used in 307 places.'>fname</a>;
<a id='L507' name='L507'></a> 507 <strong class='reserved'>int</strong> <a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>, <a href='../Y/result.html' title='Multiple used in 781 places.'>result</a>;
<a id='L508' name='L508'></a> 508
<a id='L509' name='L509'></a> 509 <a href='../S/lib--widget--dialog-switch.c.html#L338' title='Defined at 338 in lib/widget/dialog-switch.c.'>do_refresh</a> ();
<a id='L510' name='L510'></a> 510
<a id='L511' name='L511'></a> 511 <a href='../Y/need_update.html' title='Multiple used in 37 places.'>need_update</a> = <a href='../Y/FALSE.html' title='Multiple used in 1723 places.'>FALSE</a>;
<a id='L512' name='L512'></a> 512 <a href='../Y/end_chmod.html' title='Multiple used in 9 places.'>end_chmod</a> = <a href='../Y/FALSE.html' title='Multiple used in 1723 places.'>FALSE</a>;
<a id='L513' name='L513'></a> 513
<a id='L514' name='L514'></a> 514 <a href='../Y/fname.html' title='Multiple used in 307 places.'>fname</a> = <a href='../S/src--filemanager--panel.c.html#L4913' title='Defined at 4913 in src/filemanager/panel.c.'>panel_get_marked_file</a> (<a href='../Y/panel.html' title='Multiple used in 1289 places.'>panel</a>, &amp;<a href='../Y/current_file.html' title='Multiple used in 51 places.'>current_file</a>);
<a id='L515' name='L515'></a> 515 <strong class='reserved'>if</strong> (<a href='../Y/fname.html' title='Multiple used in 307 places.'>fname</a> == <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>)
<a id='L516' name='L516'></a> 516 <strong class='reserved'>break</strong>;
<a id='L517' name='L517'></a> 517
<a id='L518' name='L518'></a> 518 <a href='../Y/vpath.html' title='Multiple used in 942 places.'>vpath</a> = <a href='../S/lib--vfs--path.c.html#L722' title='Defined at 722 in lib/vfs/path.c.'>vfs_path_from_str</a> (<a href='../Y/fname.html' title='Multiple used in 307 places.'>fname</a>-&gt;<a href='../Y/str.html' title='Multiple used in 654 places.'>str</a>);
<a id='L519' name='L519'></a> 519
<a id='L520' name='L520'></a> 520 <strong class='reserved'>if</strong> (<a href='../D/mc_stat.html' title='Multiple defined in 2 places.'>mc_stat</a> (<a href='../Y/vpath.html' title='Multiple used in 942 places.'>vpath</a>, &amp;<a href='../Y/sf_stat.html' title='Multiple used in 30 places.'>sf_stat</a>) != 0)
<a id='L521' name='L521'></a> 521 <em class='brace'>{</em>
<a id='L522' name='L522'></a> 522 <a href='../S/lib--vfs--path.c.html#L918' title='Defined at 918 in lib/vfs/path.c.'>vfs_path_free</a> (<a href='../Y/vpath.html' title='Multiple used in 942 places.'>vpath</a>, <a href='../Y/TRUE.html' title='Multiple used in 1990 places.'>TRUE</a>);
<a id='L523' name='L523'></a> 523 <strong class='reserved'>break</strong>;
<a id='L524' name='L524'></a> 524 <em class='brace'>}</em>
<a id='L525' name='L525'></a> 525
<a id='L526' name='L526'></a> 526 <a href='../Y/ch_mode.html' title='Multiple used in 9 places.'>ch_mode</a> = <a href='../Y/sf_stat.html' title='Multiple used in 30 places.'>sf_stat</a>.<a href='../Y/st_mode.html' title='Multiple used in 242 places.'>st_mode</a>;
<a id='L527' name='L527'></a> 527
<a id='L528' name='L528'></a> 528 <a href='../Y/ch_dlg.html' title='Multiple used in 41 places.'>ch_dlg</a> = <a href='../S/src--filemanager--chmod.c.html#L293' title='Defined at 293 in src/filemanager/chmod.c.'>chmod_dlg_create</a> (<a href='../Y/panel.html' title='Multiple used in 1289 places.'>panel</a>, <a href='../Y/fname.html' title='Multiple used in 307 places.'>fname</a>-&gt;<a href='../Y/str.html' title='Multiple used in 654 places.'>str</a>, &amp;<a href='../Y/sf_stat.html' title='Multiple used in 30 places.'>sf_stat</a>);
<a id='L529' name='L529'></a> 529 <a href='../Y/result.html' title='Multiple used in 781 places.'>result</a> = <a href='../S/lib--widget--dialog.c.html#L557' title='Defined at 557 in lib/widget/dialog.c.'>dlg_run</a> (<a href='../Y/ch_dlg.html' title='Multiple used in 41 places.'>ch_dlg</a>);
<a id='L530' name='L530'></a> 530
<a id='L531' name='L531'></a> 531 <strong class='reserved'>switch</strong> (<a href='../Y/result.html' title='Multiple used in 781 places.'>result</a>)
<a id='L532' name='L532'></a> 532 <em class='brace'>{</em>
<a id='L533' name='L533'></a> 533 <strong class='reserved'>case</strong> <a href='../S/lib--widget--dialog.h.html#L26' title='Defined at 26 in lib/widget/dialog.h.'>B_CANCEL</a>:
<a id='L534' name='L534'></a> 534 <a href='../Y/end_chmod.html' title='Multiple used in 9 places.'>end_chmod</a> = <a href='../Y/TRUE.html' title='Multiple used in 1990 places.'>TRUE</a>;
<a id='L535' name='L535'></a> 535 <strong class='reserved'>break</strong>;
<a id='L536' name='L536'></a> 536
<a id='L537' name='L537'></a> 537 <strong class='reserved'>case</strong> <a href='../S/lib--widget--dialog.h.html#L27' title='Defined at 27 in lib/widget/dialog.h.'>B_ENTER</a>:
<a id='L538' name='L538'></a> 538 <strong class='reserved'>if</strong> (<a href='../Y/mode_change.html' title='Multiple used in 4 places.'>mode_change</a>)
<a id='L539' name='L539'></a> 539 <em class='brace'>{</em>
<a id='L540' name='L540'></a> 540 <strong class='reserved'>if</strong> (<a href='../Y/panel.html' title='Multiple used in 1289 places.'>panel</a>-&gt;<a href='../Y/marked.html' title='Multiple used in 99 places.'>marked</a> &lt;= 1)
<a id='L541' name='L541'></a> 541 <em class='brace'>{</em>
<a id='L542' name='L542'></a> 542 <em class='comment'>// single or last file</em>
<a id='L543' name='L543'></a> 543 <strong class='reserved'>if</strong> (<a href='../Y/mc_chmod.html' title='Multiple used in 14 places.'>mc_chmod</a> (<a href='../Y/vpath.html' title='Multiple used in 942 places.'>vpath</a>, <a href='../Y/ch_mode.html' title='Multiple used in 9 places.'>ch_mode</a>) == -1 &amp;&amp; !<a href='../Y/ignore_all.html' title='Multiple used in 102 places.'>ignore_all</a>)
<a id='L544' name='L544'></a> 544 <a href='../S/src--util.c.html#L85' title='Defined at 85 in src/util.c.'>file_error_message</a> (<a href='../D/_.html' title='Multiple defined in 2 places.'>_</a> ("Cannot chmod\n%s"), <a href='../Y/fname.html' title='Multiple used in 307 places.'>fname</a>-&gt;<a href='../Y/str.html' title='Multiple used in 654 places.'>str</a>);
<a id='L545' name='L545'></a> 545 <a href='../Y/end_chmod.html' title='Multiple used in 9 places.'>end_chmod</a> = <a href='../Y/TRUE.html' title='Multiple used in 1990 places.'>TRUE</a>;
<a id='L546' name='L546'></a> 546 <em class='brace'>}</em>
<a id='L547' name='L547'></a> 547 <strong class='reserved'>else</strong> <strong class='reserved'>if</strong> (!<a href='../S/src--filemanager--chmod.c.html#L392' title='Defined at 392 in src/filemanager/chmod.c.'>try_chmod</a> (<a href='../Y/vpath.html' title='Multiple used in 942 places.'>vpath</a>, <a href='../Y/ch_mode.html' title='Multiple used in 9 places.'>ch_mode</a>))
<a id='L548' name='L548'></a> 548 <em class='brace'>{</em>
<a id='L549' name='L549'></a> 549 <em class='comment'>// stop multiple files processing</em>
<a id='L550' name='L550'></a> 550 <a href='../Y/result.html' title='Multiple used in 781 places.'>result</a> = <a href='../S/lib--widget--dialog.h.html#L26' title='Defined at 26 in lib/widget/dialog.h.'>B_CANCEL</a>;
<a id='L551' name='L551'></a> 551 <a href='../Y/end_chmod.html' title='Multiple used in 9 places.'>end_chmod</a> = <a href='../Y/TRUE.html' title='Multiple used in 1990 places.'>TRUE</a>;
<a id='L552' name='L552'></a> 552 <em class='brace'>}</em>
<a id='L553' name='L553'></a> 553 <em class='brace'>}</em>
<a id='L554' name='L554'></a> 554
<a id='L555' name='L555'></a> 555 <a href='../Y/need_update.html' title='Multiple used in 37 places.'>need_update</a> = <a href='../Y/TRUE.html' title='Multiple used in 1990 places.'>TRUE</a>;
<a id='L556' name='L556'></a> 556 <strong class='reserved'>break</strong>;
<a id='L557' name='L557'></a> 557
<a id='L558' name='L558'></a> 558 <strong class='reserved'>case</strong> <a href='../D/B_SETALL.html' title='Multiple defined in 4 places.'>B_SETALL</a>:
<a id='L559' name='L559'></a> 559 <strong class='reserved'>case</strong> <a href='../D/B_MARKED.html' title='Multiple defined in 2 places.'>B_MARKED</a>:
<a id='L560' name='L560'></a> 560 <a href='../Y/and_mask.html' title='Multiple used in 17 places.'>and_mask</a> = <a href='../Y/or_mask.html' title='Multiple used in 14 places.'>or_mask</a> = 0;
<a id='L561' name='L561'></a> 561 <a href='../Y/and_mask.html' title='Multiple used in 17 places.'>and_mask</a> = ~<a href='../Y/and_mask.html' title='Multiple used in 17 places.'>and_mask</a>;
<a id='L562' name='L562'></a> 562
<a id='L563' name='L563'></a> 563 <strong class='reserved'>for</strong> (<a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a> = 0; <a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a> &lt; <a href='../D/BUTTONS_PERM.html' title='Multiple defined in 2 places.'>BUTTONS_PERM</a>; <a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>++)
<a id='L564' name='L564'></a> 564 <strong class='reserved'>if</strong> (<a href='../Y/check_perm.html' title='Multiple used in 21 places.'>check_perm</a>[<a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>].<a href='../Y/selected.html' title='Multiple used in 50 places.'>selected</a> || <a href='../Y/result.html' title='Multiple used in 781 places.'>result</a> == <a href='../D/B_SETALL.html' title='Multiple defined in 4 places.'>B_SETALL</a>)
<a id='L565' name='L565'></a> 565 <em class='brace'>{</em>
<a id='L566' name='L566'></a> 566 <strong class='reserved'>if</strong> (<a href='../Y/check_perm.html' title='Multiple used in 21 places.'>check_perm</a>[<a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>].<a href='../Y/check.html' title='Multiple used in 18 places.'>check</a>-&gt;<a href='../Y/state.html' title='Multiple used in 274 places.'>state</a>)
<a id='L567' name='L567'></a> 567 <a href='../Y/or_mask.html' title='Multiple used in 14 places.'>or_mask</a> |= <a href='../Y/check_perm.html' title='Multiple used in 21 places.'>check_perm</a>[<a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>].<a href='../Y/mode.html' title='Multiple used in 188 places.'>mode</a>;
<a id='L568' name='L568'></a> 568 <strong class='reserved'>else</strong>
<a id='L569' name='L569'></a> 569 <a href='../Y/and_mask.html' title='Multiple used in 17 places.'>and_mask</a> &amp;= ~<a href='../Y/check_perm.html' title='Multiple used in 21 places.'>check_perm</a>[<a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>].<a href='../Y/mode.html' title='Multiple used in 188 places.'>mode</a>;
<a id='L570' name='L570'></a> 570 <em class='brace'>}</em>
<a id='L571' name='L571'></a> 571
<a id='L572' name='L572'></a> 572 <a href='../S/src--filemanager--chmod.c.html#L450' title='Defined at 450 in src/filemanager/chmod.c.'>apply_mask</a> (<a href='../Y/panel.html' title='Multiple used in 1289 places.'>panel</a>, <a href='../Y/vpath.html' title='Multiple used in 942 places.'>vpath</a>, &amp;<a href='../Y/sf_stat.html' title='Multiple used in 30 places.'>sf_stat</a>);
<a id='L573' name='L573'></a> 573 <a href='../Y/need_update.html' title='Multiple used in 37 places.'>need_update</a> = <a href='../Y/TRUE.html' title='Multiple used in 1990 places.'>TRUE</a>;
<a id='L574' name='L574'></a> 574 <a href='../Y/end_chmod.html' title='Multiple used in 9 places.'>end_chmod</a> = <a href='../Y/TRUE.html' title='Multiple used in 1990 places.'>TRUE</a>;
<a id='L575' name='L575'></a> 575 <strong class='reserved'>break</strong>;
<a id='L576' name='L576'></a> 576
<a id='L577' name='L577'></a> 577 <strong class='reserved'>case</strong> <a href='../D/B_SETMRK.html' title='Multiple defined in 2 places.'>B_SETMRK</a>:
<a id='L578' name='L578'></a> 578 <a href='../Y/and_mask.html' title='Multiple used in 17 places.'>and_mask</a> = <a href='../Y/or_mask.html' title='Multiple used in 14 places.'>or_mask</a> = 0;
<a id='L579' name='L579'></a> 579 <a href='../Y/and_mask.html' title='Multiple used in 17 places.'>and_mask</a> = ~<a href='../Y/and_mask.html' title='Multiple used in 17 places.'>and_mask</a>;
<a id='L580' name='L580'></a> 580
<a id='L581' name='L581'></a> 581 <strong class='reserved'>for</strong> (<a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a> = 0; <a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a> &lt; <a href='../D/BUTTONS_PERM.html' title='Multiple defined in 2 places.'>BUTTONS_PERM</a>; <a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>++)
<a id='L582' name='L582'></a> 582 <strong class='reserved'>if</strong> (<a href='../Y/check_perm.html' title='Multiple used in 21 places.'>check_perm</a>[<a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>].<a href='../Y/selected.html' title='Multiple used in 50 places.'>selected</a>)
<a id='L583' name='L583'></a> 583 <a href='../Y/or_mask.html' title='Multiple used in 14 places.'>or_mask</a> |= <a href='../Y/check_perm.html' title='Multiple used in 21 places.'>check_perm</a>[<a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>].<a href='../Y/mode.html' title='Multiple used in 188 places.'>mode</a>;
<a id='L584' name='L584'></a> 584
<a id='L585' name='L585'></a> 585 <a href='../S/src--filemanager--chmod.c.html#L450' title='Defined at 450 in src/filemanager/chmod.c.'>apply_mask</a> (<a href='../Y/panel.html' title='Multiple used in 1289 places.'>panel</a>, <a href='../Y/vpath.html' title='Multiple used in 942 places.'>vpath</a>, &amp;<a href='../Y/sf_stat.html' title='Multiple used in 30 places.'>sf_stat</a>);
<a id='L586' name='L586'></a> 586 <a href='../Y/need_update.html' title='Multiple used in 37 places.'>need_update</a> = <a href='../Y/TRUE.html' title='Multiple used in 1990 places.'>TRUE</a>;
<a id='L587' name='L587'></a> 587 <a href='../Y/end_chmod.html' title='Multiple used in 9 places.'>end_chmod</a> = <a href='../Y/TRUE.html' title='Multiple used in 1990 places.'>TRUE</a>;
<a id='L588' name='L588'></a> 588 <strong class='reserved'>break</strong>;
<a id='L589' name='L589'></a> 589
<a id='L590' name='L590'></a> 590 <strong class='reserved'>case</strong> <a href='../D/B_CLRMRK.html' title='Multiple defined in 2 places.'>B_CLRMRK</a>:
<a id='L591' name='L591'></a> 591 <a href='../Y/and_mask.html' title='Multiple used in 17 places.'>and_mask</a> = <a href='../Y/or_mask.html' title='Multiple used in 14 places.'>or_mask</a> = 0;
<a id='L592' name='L592'></a> 592 <a href='../Y/and_mask.html' title='Multiple used in 17 places.'>and_mask</a> = ~<a href='../Y/and_mask.html' title='Multiple used in 17 places.'>and_mask</a>;
<a id='L593' name='L593'></a> 593
<a id='L594' name='L594'></a> 594 <strong class='reserved'>for</strong> (<a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a> = 0; <a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a> &lt; <a href='../D/BUTTONS_PERM.html' title='Multiple defined in 2 places.'>BUTTONS_PERM</a>; <a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>++)
<a id='L595' name='L595'></a> 595 <strong class='reserved'>if</strong> (<a href='../Y/check_perm.html' title='Multiple used in 21 places.'>check_perm</a>[<a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>].<a href='../Y/selected.html' title='Multiple used in 50 places.'>selected</a>)
<a id='L596' name='L596'></a> 596 <a href='../Y/and_mask.html' title='Multiple used in 17 places.'>and_mask</a> &amp;= ~<a href='../Y/check_perm.html' title='Multiple used in 21 places.'>check_perm</a>[<a href='../Y/i.html' title='Multiple used in 1934 places.'>i</a>].<a href='../Y/mode.html' title='Multiple used in 188 places.'>mode</a>;
<a id='L597' name='L597'></a> 597
<a id='L598' name='L598'></a> 598 <a href='../S/src--filemanager--chmod.c.html#L450' title='Defined at 450 in src/filemanager/chmod.c.'>apply_mask</a> (<a href='../Y/panel.html' title='Multiple used in 1289 places.'>panel</a>, <a href='../Y/vpath.html' title='Multiple used in 942 places.'>vpath</a>, &amp;<a href='../Y/sf_stat.html' title='Multiple used in 30 places.'>sf_stat</a>);
<a id='L599' name='L599'></a> 599 <a href='../Y/need_update.html' title='Multiple used in 37 places.'>need_update</a> = <a href='../Y/TRUE.html' title='Multiple used in 1990 places.'>TRUE</a>;
<a id='L600' name='L600'></a> 600 <a href='../Y/end_chmod.html' title='Multiple used in 9 places.'>end_chmod</a> = <a href='../Y/TRUE.html' title='Multiple used in 1990 places.'>TRUE</a>;
<a id='L601' name='L601'></a> 601 <strong class='reserved'>break</strong>;
<a id='L602' name='L602'></a> 602
<a id='L603' name='L603'></a> 603 <strong class='reserved'>default</strong>:
<a id='L604' name='L604'></a> 604 <strong class='reserved'>break</strong>;
<a id='L605' name='L605'></a> 605 <em class='brace'>}</em>
<a id='L606' name='L606'></a> 606
<a id='L607' name='L607'></a> 607 <strong class='reserved'>if</strong> (<a href='../Y/panel.html' title='Multiple used in 1289 places.'>panel</a>-&gt;<a href='../Y/marked.html' title='Multiple used in 99 places.'>marked</a> != 0 &amp;&amp; <a href='../Y/result.html' title='Multiple used in 781 places.'>result</a> != <a href='../S/lib--widget--dialog.h.html#L26' title='Defined at 26 in lib/widget/dialog.h.'>B_CANCEL</a>)
<a id='L608' name='L608'></a> 608 <em class='brace'>{</em>
<a id='L609' name='L609'></a> 609 <a href='../S/src--filemanager--panel.c.html#L4812' title='Defined at 4812 in src/filemanager/panel.c.'>do_file_mark</a> (<a href='../Y/panel.html' title='Multiple used in 1289 places.'>panel</a>, <a href='../Y/current_file.html' title='Multiple used in 51 places.'>current_file</a>, 0);
<a id='L610' name='L610'></a> 610 <a href='../Y/need_update.html' title='Multiple used in 37 places.'>need_update</a> = <a href='../Y/TRUE.html' title='Multiple used in 1990 places.'>TRUE</a>;
<a id='L611' name='L611'></a> 611 <em class='brace'>}</em>
<a id='L612' name='L612'></a> 612
<a id='L613' name='L613'></a> 613 <a href='../S/lib--vfs--path.c.html#L918' title='Defined at 918 in lib/vfs/path.c.'>vfs_path_free</a> (<a href='../Y/vpath.html' title='Multiple used in 942 places.'>vpath</a>, <a href='../Y/TRUE.html' title='Multiple used in 1990 places.'>TRUE</a>);
<a id='L614' name='L614'></a> 614
<a id='L615' name='L615'></a> 615 <a href='../S/lib--widget--widget-common.h.html#L394' title='Defined at 394 in lib/widget/widget-common.h.'>widget_destroy</a> (<a href='../S/lib--widget--widget-common.h.html#L15' title='Defined at 15 in lib/widget/widget-common.h.'>WIDGET</a> (<a href='../Y/ch_dlg.html' title='Multiple used in 41 places.'>ch_dlg</a>));
<a id='L616' name='L616'></a> 616 <em class='brace'>}</em>
<a id='L617' name='L617'></a> 617 <strong class='reserved'>while</strong> (<a href='../Y/panel.html' title='Multiple used in 1289 places.'>panel</a>-&gt;<a href='../Y/marked.html' title='Multiple used in 99 places.'>marked</a> != 0 &amp;&amp; !<a href='../Y/end_chmod.html' title='Multiple used in 9 places.'>end_chmod</a>);
<a id='L618' name='L618'></a> 618
<a id='L619' name='L619'></a> 619 <a href='../S/src--filemanager--chmod.c.html#L382' title='Defined at 382 in src/filemanager/chmod.c.'>chmod_done</a> (<a href='../Y/need_update.html' title='Multiple used in 37 places.'>need_update</a>);
<a id='L620' name='L620'></a> 620 <em class='brace'>}</em>
<a id='L621' name='L621'></a> 621
<a id='L622' name='L622'></a> 622 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
</pre>
<hr />
<a id='BOTTOM' name='BOTTOM'></a>
<em class='comment'>/* <img class='icon' src='../icons/n_left.png' alt='[previous]' /><img class='icon' src='../icons/n_right.png' alt='[next]' /><a href='#L130'><img class='icon' src='../icons/first.png' alt='[first]' /></a><a href='#L491'><img class='icon' src='../icons/last.png' alt='[last]' /></a><a href='#TOP'><img class='icon' src='../icons/top.png' alt='[top]' /></a><img class='icon' src='../icons/n_bottom.png' alt='[bottom]' /><a href='../mains.html'><img class='icon' src='../icons/index.png' alt='[index]' /></a><a href='../help.html'><img class='icon' src='../icons/help.png' alt='[help]' /></a>&nbsp;<input type='text' readonly onfocus='this.select();' value='+622 src/filemanager/chmod.c' /> */</em>
</body>
</html>