updated to the new Pikotools api (new Space struct)

This commit is contained in:
2021-04-09 17:50:58 +02:00
parent 00b980e74b
commit 35e10ed469
52 changed files with 795 additions and 736 deletions

View File

@@ -5,7 +5,7 @@
*/
/*
* Copyright (c) 2012-2015, Tomasz Sowa
* Copyright (c) 2012-2021, Tomasz Sowa
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -52,7 +52,7 @@ void env_str(Info & i)
User * puser = cur->session->puser;
if( puser )
puser->env.Serialize(i.out, true, false);
puser->env.serialize_to_space_stream(i.out, true);
}
@@ -105,7 +105,7 @@ void env_admin_str(Info & i)
User * puser = cur->session->puser;
if( puser )
puser->aenv.Serialize(i.out, true, false);
puser->aenv.serialize_to_space_stream(i.out, true);
}