Displaying 4 results from an estimated 4 matches for "exit_s".
Did you mean:
exit_t
2002 Dec 18
0
problem to connect samba on Mac os X (user/passwd)
...mbd/reply.c:reply_s
esssetup_and_X(972)
Defaulting to Lanman password for pbe
[2002/12/18 09:56:56, 1]
/SourceCache/samba/samba-21/source/smbd/reply.c:reply_s
esssetup_and_X(998)
Rejecting user 'pbe': bad password
[2002/12/18 09:56:56, 2]
/SourceCache/samba/samba-21/source/smbd/server.c:exit_s
erver(458)
Closing connections
and by the windows explorer (explorer.exe) on windows 2000 or NT it is
the same message
this is my config file
[global]
netbios name = JOBS
workgroup = GAMSAU
server string = Mac OS X Server
guest account = unknown
log file = /Library/Logs/Windows...
2010 Sep 11
1
Remaining syntax-check errors
I've pushed 10 commits which just clean up errors found by 'make
syntax-check'. The remaining syntax-check errors are attached below.
I think many of them are false alarms.
Rich.
--
Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones
libguestfs lets you edit virtual machines. Supports shell scripting,
bindings from many languages.
2012 Sep 16
3
Remaining syntax-check errors in libguestfs
... and why they are (probably) not errors.
> bindtextdomain
> daemon/guestfsd.c
> erlang/erl-guestfs-proto.c
> examples/copy_over.c
> examples/create_disk.c
> examples/display_icon.c
> examples/inspect_vm.c
> examples/mount_local.c
> examples/virt-dhcp-address.c
> tests/c-api/test-add-drive-opts.c
> tests/c-api/test-add-libvirt-dom.c
>
2009 Nov 20
1
fix new failures from latest-from-gnulib syntax-check
There's a new syntax check rule from gnulib.
It requires that you write e.g., exit (EXIT_SUCCESS), not exit (0).
And the same for 1/EXIT_FAILURE and any other constants.
There were a lot of violations, including a few false positives,
so I started with the exemptions (see the .x-sc file below).
Then I converted the vast majority automatically, with this:
maint: use EXIT_SUCCESS and...